@@ -34,7 +34,7 @@ |
||
34 | 34 | public function onMigrationsMigrated(MigrationsEventArgs $args) |
35 | 35 | { |
36 | 36 | $conn = $args->getConnection(); |
37 | - if ( ! $args->isDryRun() && ! $conn->isAutoCommit()) { |
|
37 | + if (!$args->isDryRun() && !$conn->isAutoCommit()) { |
|
38 | 38 | $conn->commit(); |
39 | 39 | } |
40 | 40 | } |
@@ -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; |
@@ -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 |
@@ -61,10 +61,10 @@ discard block |
||
61 | 61 | { |
62 | 62 | $name = $configuration->getName(); |
63 | 63 | $name = $name ? $name : 'Doctrine Database Migrations'; |
64 | - $name = str_repeat(' ', 20) . $name . str_repeat(' ', 20); |
|
65 | - $output->writeln('<question>' . str_repeat(' ', strlen($name)) . '</question>'); |
|
66 | - $output->writeln('<question>' . $name . '</question>'); |
|
67 | - $output->writeln('<question>' . str_repeat(' ', strlen($name)) . '</question>'); |
|
64 | + $name = str_repeat(' ', 20).$name.str_repeat(' ', 20); |
|
65 | + $output->writeln('<question>'.str_repeat(' ', strlen($name)).'</question>'); |
|
66 | + $output->writeln('<question>'.$name.'</question>'); |
|
67 | + $output->writeln('<question>'.str_repeat(' ', strlen($name)).'</question>'); |
|
68 | 68 | $output->writeln(''); |
69 | 69 | } |
70 | 70 | |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | */ |
88 | 88 | protected function getMigrationConfiguration(InputInterface $input, OutputInterface $output) |
89 | 89 | { |
90 | - if ( ! $this->migrationConfiguration) { |
|
90 | + if (!$this->migrationConfiguration) { |
|
91 | 91 | if ($this->getHelperSet()->has('configuration') |
92 | 92 | && $this->getHelperSet()->get('configuration') instanceof ConfigurationHelperInterface) { |
93 | 93 | $configHelper = $this->getHelperSet()->get('configuration'); |
@@ -118,8 +118,8 @@ discard block |
||
118 | 118 | */ |
119 | 119 | private function getOutputWriter(OutputInterface $output) |
120 | 120 | { |
121 | - if ( ! $this->outputWriter) { |
|
122 | - $this->outputWriter = new OutputWriter(function ($message) use ($output) { |
|
121 | + if (!$this->outputWriter) { |
|
122 | + $this->outputWriter = new OutputWriter(function($message) use ($output) { |
|
123 | 123 | return $output->writeln($message); |
124 | 124 | }); |
125 | 125 | } |
@@ -147,7 +147,7 @@ discard block |
||
147 | 147 | new ConnectionConfigurationLoader($this->configuration), |
148 | 148 | ] |
149 | 149 | ); |
150 | - $connection = $chainLoader->chosen(); |
|
150 | + $connection = $chainLoader->chosen(); |
|
151 | 151 | |
152 | 152 | if ($connection) { |
153 | 153 | return $this->connection = $connection; |
@@ -100,8 +100,8 @@ discard block |
||
100 | 100 | $replacements = [ |
101 | 101 | $configuration->getMigrationsNamespace(), |
102 | 102 | $version, |
103 | - $up ? " " . implode("\n ", explode("\n", $up)) : null, |
|
104 | - $down ? " " . implode("\n ", explode("\n", $down)) : null, |
|
103 | + $up ? " ".implode("\n ", explode("\n", $up)) : null, |
|
104 | + $down ? " ".implode("\n ", explode("\n", $down)) : null, |
|
105 | 105 | ]; |
106 | 106 | |
107 | 107 | $code = str_replace($placeHolders, $replacements, $this->getTemplate()); |
@@ -109,12 +109,12 @@ discard block |
||
109 | 109 | |
110 | 110 | $directoryHelper = new MigrationDirectoryHelper($configuration); |
111 | 111 | $dir = $directoryHelper->getMigrationDirectory(); |
112 | - $path = $dir . '/Version' . $version . '.php'; |
|
112 | + $path = $dir.'/Version'.$version.'.php'; |
|
113 | 113 | |
114 | 114 | file_put_contents($path, $code); |
115 | 115 | |
116 | 116 | if ($editorCmd = $input->getOption('editor-cmd')) { |
117 | - proc_open($editorCmd . ' ' . escapeshellarg($path), [], $pipes); |
|
117 | + proc_open($editorCmd.' '.escapeshellarg($path), [], $pipes); |
|
118 | 118 | } |
119 | 119 | |
120 | 120 | return $path; |
@@ -128,16 +128,16 @@ discard block |
||
128 | 128 | return; |
129 | 129 | } |
130 | 130 | |
131 | - if ( ! is_file($customTemplate) || ! is_readable($customTemplate)) { |
|
131 | + if (!is_file($customTemplate) || !is_readable($customTemplate)) { |
|
132 | 132 | throw new \InvalidArgumentException( |
133 | - 'The specified template "' . $customTemplate . '" cannot be found or is not readable.' |
|
133 | + 'The specified template "'.$customTemplate.'" cannot be found or is not readable.' |
|
134 | 134 | ); |
135 | 135 | } |
136 | 136 | |
137 | 137 | $content = file_get_contents($customTemplate); |
138 | 138 | |
139 | 139 | if ($content === false) { |
140 | - throw new \InvalidArgumentException('The specified template "' . $customTemplate . '" could not be read.'); |
|
140 | + throw new \InvalidArgumentException('The specified template "'.$customTemplate.'" could not be read.'); |
|
141 | 141 | } |
142 | 142 | |
143 | 143 | $output->writeln(sprintf('Using custom migration template "<info>%s</info>"', $customTemplate)); |
@@ -45,7 +45,7 @@ |
||
45 | 45 | |
46 | 46 | /** |
47 | 47 | * Transform the recursiveIterator result array of array into the expected array of migration file |
48 | - * @param iterable $iteratorFilesMatch |
|
48 | + * @param \RegexIterator $iteratorFilesMatch |
|
49 | 49 | * @return array |
50 | 50 | */ |
51 | 51 | private function getMatches($iteratorFilesMatch) |