@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | * migrations. |
141 | 141 | */ |
142 | 142 | $migrations = $this->configuration->getMigrations(); |
143 | - if ( ! isset($migrations[$to]) && $to > 0) { |
|
143 | + if (!isset($migrations[$to]) && $to > 0) { |
|
144 | 144 | throw MigrationException::unknownMigrationVersion($to); |
145 | 145 | } |
146 | 146 | |
@@ -155,11 +155,11 @@ discard block |
||
155 | 155 | * means we are already at the destination return an empty array() |
156 | 156 | * to signify that there is nothing left to do. |
157 | 157 | */ |
158 | - if ($from === $to && empty($migrationsToExecute) && ! empty($migrations)) { |
|
158 | + if ($from === $to && empty($migrationsToExecute) && !empty($migrations)) { |
|
159 | 159 | return $this->noMigrations(); |
160 | 160 | } |
161 | 161 | |
162 | - if ( ! $dryRun && false === $this->migrationsCanExecute($confirm)) { |
|
162 | + if (!$dryRun && false === $this->migrationsCanExecute($confirm)) { |
|
163 | 163 | return []; |
164 | 164 | } |
165 | 165 | |
@@ -170,7 +170,7 @@ discard block |
||
170 | 170 | /** |
171 | 171 | * If there are no migrations to execute throw an exception. |
172 | 172 | */ |
173 | - if (empty($migrationsToExecute) && ! $this->noMigrationException) { |
|
173 | + if (empty($migrationsToExecute) && !$this->noMigrationException) { |
|
174 | 174 | throw MigrationException::noMigrationsToExecute(); |
175 | 175 | } elseif (empty($migrationsToExecute)) { |
176 | 176 | return $this->noMigrations(); |
@@ -34,7 +34,7 @@ |
||
34 | 34 | public function __construct(\Closure $closure = null) |
35 | 35 | { |
36 | 36 | if ($closure === null) { |
37 | - $closure = function ($message) { |
|
37 | + $closure = function($message) { |
|
38 | 38 | }; |
39 | 39 | } |
40 | 40 | $this->closure = $closure; |
@@ -117,8 +117,8 @@ discard block |
||
117 | 117 | $replacements = [ |
118 | 118 | $configuration->getMigrationsNamespace(), |
119 | 119 | $version, |
120 | - $up ? " " . implode("\n ", explode("\n", $up)) : null, |
|
121 | - $down ? " " . implode("\n ", explode("\n", $down)) : null, |
|
120 | + $up ? " ".implode("\n ", explode("\n", $up)) : null, |
|
121 | + $down ? " ".implode("\n ", explode("\n", $down)) : null, |
|
122 | 122 | ]; |
123 | 123 | |
124 | 124 | $code = str_replace($placeHolders, $replacements, $this->getTemplate()); |
@@ -126,12 +126,12 @@ discard block |
||
126 | 126 | |
127 | 127 | $directoryHelper = new MigrationDirectoryHelper($configuration); |
128 | 128 | $dir = $directoryHelper->getMigrationDirectory(); |
129 | - $path = $dir . '/Version' . $version . '.php'; |
|
129 | + $path = $dir.'/Version'.$version.'.php'; |
|
130 | 130 | |
131 | 131 | file_put_contents($path, $code); |
132 | 132 | |
133 | 133 | if ($editorCmd = $input->getOption('editor-cmd')) { |
134 | - proc_open($editorCmd . ' ' . escapeshellarg($path), [], $pipes); |
|
134 | + proc_open($editorCmd.' '.escapeshellarg($path), [], $pipes); |
|
135 | 135 | } |
136 | 136 | |
137 | 137 | return $path; |
@@ -145,18 +145,18 @@ discard block |
||
145 | 145 | return; |
146 | 146 | } |
147 | 147 | |
148 | - $filePath = getcwd() . '/' . $customTemplate; |
|
148 | + $filePath = getcwd().'/'.$customTemplate; |
|
149 | 149 | |
150 | - if ( ! is_file($filePath) || ! is_readable($filePath)) { |
|
150 | + if (!is_file($filePath) || !is_readable($filePath)) { |
|
151 | 151 | throw new \InvalidArgumentException( |
152 | - 'The specified template "' . $customTemplate . '" cannot be found or is not readable.' |
|
152 | + 'The specified template "'.$customTemplate.'" cannot be found or is not readable.' |
|
153 | 153 | ); |
154 | 154 | } |
155 | 155 | |
156 | 156 | $content = file_get_contents($filePath); |
157 | 157 | |
158 | 158 | if ($content === false) { |
159 | - throw new \InvalidArgumentException('The specified template "' . $customTemplate . '" could not be read.'); |
|
159 | + throw new \InvalidArgumentException('The specified template "'.$customTemplate.'" could not be read.'); |
|
160 | 160 | } |
161 | 161 | |
162 | 162 | $output->writeln(sprintf('Using custom migration template "<info>%s</info>"', $customTemplate)); |
@@ -74,7 +74,7 @@ |
||
74 | 74 | } |
75 | 75 | |
76 | 76 | //Show normal version number |
77 | - return $this->configuration->getDateTime($version) . ' (<comment>' . $version . '</comment>)'; |
|
77 | + return $this->configuration->getDateTime($version).' (<comment>'.$version.'</comment>)'; |
|
78 | 78 | } |
79 | 79 | |
80 | 80 | /** |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace Doctrine\DBAL\Migrations; |
6 | 6 |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace Doctrine\DBAL\Migrations; |
6 | 6 |