@@ -85,10 +85,10 @@ discard block |
||
| 85 | 85 | { |
| 86 | 86 | foreach ($this->getMigrations($container) as $class) { |
| 87 | 87 | assert(is_string($class)); |
| 88 | - $this->getIO()->writeInfo("Starting migration for `$class`..." . PHP_EOL, IoInterface::VERBOSITY_VERBOSE); |
|
| 88 | + $this->getIO()->writeInfo("Starting migration for `$class`...".PHP_EOL, IoInterface::VERBOSITY_VERBOSE); |
|
| 89 | 89 | if (($migration = $this->createMigration($class, $container)) !== null) { |
| 90 | 90 | $migration->init($container)->migrate(); |
| 91 | - $this->getIO()->writeInfo("Migration finished for `$class`." . PHP_EOL, IoInterface::VERBOSITY_NORMAL); |
|
| 91 | + $this->getIO()->writeInfo("Migration finished for `$class`.".PHP_EOL, IoInterface::VERBOSITY_NORMAL); |
|
| 92 | 92 | } |
| 93 | 93 | } |
| 94 | 94 | } |
@@ -107,10 +107,10 @@ discard block |
||
| 107 | 107 | { |
| 108 | 108 | foreach ($this->getRollbacks($container) as $class) { |
| 109 | 109 | assert(is_string($class)); |
| 110 | - $this->getIO()->writeInfo("Starting rollback for `$class`..." . PHP_EOL, IoInterface::VERBOSITY_VERBOSE); |
|
| 110 | + $this->getIO()->writeInfo("Starting rollback for `$class`...".PHP_EOL, IoInterface::VERBOSITY_VERBOSE); |
|
| 111 | 111 | if (($migration = $this->createMigration($class, $container)) !== null) { |
| 112 | 112 | $migration->init($container)->rollback(); |
| 113 | - $this->getIO()->writeInfo("Rollback finished for `$class`." . PHP_EOL, IoInterface::VERBOSITY_NORMAL); |
|
| 113 | + $this->getIO()->writeInfo("Rollback finished for `$class`.".PHP_EOL, IoInterface::VERBOSITY_NORMAL); |
|
| 114 | 114 | } |
| 115 | 115 | } |
| 116 | 116 | |
@@ -310,7 +310,7 @@ discard block |
||
| 310 | 310 | /** @var MigrationInterface $migration */ |
| 311 | 311 | $migration = new $class($container); |
| 312 | 312 | } catch (Error $exception) { |
| 313 | - $this->getIO()->writeWarning("Migration `$class` not found." . PHP_EOL); |
|
| 313 | + $this->getIO()->writeWarning("Migration `$class` not found.".PHP_EOL); |
|
| 314 | 314 | } |
| 315 | 315 | |
| 316 | 316 | return $migration; |