PHP 8.2.31
Preview: Runner.php Size: 1.39 KB
/home/nshryvcy/himaltourism.com/wp-content/plugins/mailpoet/lib/Migrator/Runner.php

<?php declare(strict_types = 1);

namespace MailPoet\Migrator;

if (!defined('ABSPATH')) exit;


use MailPoet\DI\ContainerWrapper;
use MailPoet\Migrations\MigrationTemplate;
use Throwable;

class Runner {
  /** @var ContainerWrapper */
  private $container;

  /** @var Store */
  private $store;

  /** @var string */
  private $namespace;

  public function __construct(
    ContainerWrapper $container,
    Store $store
  ) {
    $this->container = $container;
    $this->store = $store;
    $this->namespace = $this->getMigrationsNamespace();
  }

  public function runMigration(string $name): void {
    $className = $this->namespace . '\\' . $name;
    if (!class_exists($className)) {
      throw MigratorException::migrationClassNotFound($className);
    }

    if (!is_subclass_of($className, Migration::class)) {
      throw MigratorException::migrationClassIsNotASubclassOf($className, Migration::class);
    }

    try {
      $migration = new $className($this->container);
      $this->store->startMigration($name);
      $migration->run();
      $this->store->completeMigration($name);
    } catch (Throwable $e) {
      $this->store->failMigration($name, (string)$e);
      throw MigratorException::migrationFailed($className, $e);
    }
  }

  private function getMigrationsNamespace(): string {
    $parts = explode('\\', MigrationTemplate::class);
    return implode('\\', array_slice($parts, 0, -1));
  }
}

Directory Contents

Dirs: 0 × Files: 10

Name Size Perms Modified Actions
4.47 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
0 B lrw-r--r-- 2023-04-04 05:35:40
Edit Download
796 B lrw-r--r-- 2023-04-04 05:35:40
Edit Download
1.72 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
543 B lrw-r--r-- 2023-04-04 05:35:40
Edit Download
2.54 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
1.24 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
1.83 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
1.39 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
2.25 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).