Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. MigrateConfigurationCommand.php

class MigrateConfigurationCommand

@no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit

@internal This class is not covered by the backward compatibility promise for PHPUnit

Hierarchy

  • class \PHPUnit\TextUI\Command\MigrateConfigurationCommand implements \PHPUnit\TextUI\Command\Command

Expanded class hierarchy of MigrateConfigurationCommand

1 file declares its use of MigrateConfigurationCommand
Application.php in vendor/phpunit/phpunit/src/TextUI/Application.php

File

vendor/phpunit/phpunit/src/TextUI/Command/Commands/MigrateConfigurationCommand.php, line 24

Namespace

PHPUnit\TextUI\Command
View source
final class MigrateConfigurationCommand implements Command {
    private readonly string $filename;
    public function __construct(string $filename) {
        $this->filename = $filename;
    }
    public function execute() : Result {
        try {
            $migrated = (new Migrator())->migrate($this->filename);
            copy($this->filename, $this->filename . '.bak');
            file_put_contents($this->filename, $migrated);
            return Result::from(sprintf('Created backup:         %s.bak%sMigrated configuration: %s%s', $this->filename, PHP_EOL, $this->filename, PHP_EOL));
        } catch (Throwable $t) {
            return Result::from(sprintf('Migration of %s failed:%s%s%s', $this->filename, PHP_EOL, $t->getMessage(), PHP_EOL), Result::FAILURE);
        }
    }

}

Members

Title Sort descending Modifiers Object type Summary Overriden Title
MigrateConfigurationCommand::$filename private property
MigrateConfigurationCommand::execute public function Overrides Command::execute
MigrateConfigurationCommand::__construct public function

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal