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\CommandView 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 |