Passed
Push — master ( 2291e3...cd7158 )
by Anton
03:34
created
src/Framework/Command/Database/ListCommand.php 2 patches
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -34,13 +34,13 @@  discard block
 block discarded – undo
34 34
      */
35 35
     public function perform(DatabaseConfig $config, DatabaseManager $dbal): void
36 36
     {
37
-        if ($this->argument('db')) {
37
+        if ($this->argument('db')){
38 38
             $databases = [$this->argument('db')];
39
-        } else {
39
+        }else{
40 40
             $databases = array_keys($config->getDatabases());
41 41
         }
42 42
 
43
-        if (empty($databases)) {
43
+        if (empty($databases)){
44 44
             $this->writeln('<fg=red>No databases found.</fg=red>');
45 45
 
46 46
             return;
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
             ]
59 59
         );
60 60
 
61
-        foreach ($databases as $database) {
61
+        foreach ($databases as $database){
62 62
             $database = $dbal->database($database);
63 63
 
64 64
             /** @var Driver $driver */
@@ -71,12 +71,12 @@  discard block
 block discarded – undo
71 71
                 $database->getPrefix() ?: '<comment>---</comment>'
72 72
             ];
73 73
 
74
-            try {
74
+            try{
75 75
                 $driver->connect();
76
-            } catch (\Exception $exception) {
76
+            }catch (\Exception $exception){
77 77
                 $this->renderException($grid, $header, $exception);
78 78
 
79
-                if ($database->getName() != end($databases)) {
79
+                if ($database->getName() != end($databases)){
80 80
                     $grid->addRow(new TableSeparator());
81 81
                 }
82 82
 
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
 
86 86
             $header[] = '<info>connected</info>';
87 87
             $this->renderTables($grid, $header, $database);
88
-            if ($database->getName() != end($databases)) {
88
+            if ($database->getName() != end($databases)){
89 89
                 $grid->addRow(new TableSeparator());
90 90
             }
91 91
         }
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
      */
120 120
     private function renderTables(Table $grid, array $header, Database $database): void
121 121
     {
122
-        foreach ($database->getTables() as $table) {
122
+        foreach ($database->getTables() as $table){
123 123
             $grid->addRow(
124 124
                 array_merge(
125 125
                     $header,
Please login to merge, or discard this patch.
Braces   +20 added lines, -9 removed lines patch added patch discarded remove patch
@@ -34,13 +34,17 @@  discard block
 block discarded – undo
34 34
      */
35 35
     public function perform(DatabaseConfig $config, DatabaseManager $dbal): void
36 36
     {
37
-        if ($this->argument('db')) {
37
+        if ($this->argument('db'))
38
+        {
38 39
             $databases = [$this->argument('db')];
39
-        } else {
40
+        }
41
+        else
42
+        {
40 43
             $databases = array_keys($config->getDatabases());
41 44
         }
42 45
 
43
-        if (empty($databases)) {
46
+        if (empty($databases))
47
+        {
44 48
             $this->writeln('<fg=red>No databases found.</fg=red>');
45 49
 
46 50
             return;
@@ -58,7 +62,8 @@  discard block
 block discarded – undo
58 62
             ]
59 63
         );
60 64
 
61
-        foreach ($databases as $database) {
65
+        foreach ($databases as $database)
66
+        {
62 67
             $database = $dbal->database($database);
63 68
 
64 69
             /** @var Driver $driver */
@@ -71,12 +76,16 @@  discard block
 block discarded – undo
71 76
                 $database->getPrefix() ?: '<comment>---</comment>'
72 77
             ];
73 78
 
74
-            try {
79
+            try
80
+            {
75 81
                 $driver->connect();
76
-            } catch (\Exception $exception) {
82
+            }
83
+            catch (\Exception $exception)
84
+            {
77 85
                 $this->renderException($grid, $header, $exception);
78 86
 
79
-                if ($database->getName() != end($databases)) {
87
+                if ($database->getName() != end($databases))
88
+                {
80 89
                     $grid->addRow(new TableSeparator());
81 90
                 }
82 91
 
@@ -85,7 +94,8 @@  discard block
 block discarded – undo
85 94
 
86 95
             $header[] = '<info>connected</info>';
87 96
             $this->renderTables($grid, $header, $database);
88
-            if ($database->getName() != end($databases)) {
97
+            if ($database->getName() != end($databases))
98
+            {
89 99
                 $grid->addRow(new TableSeparator());
90 100
             }
91 101
         }
@@ -119,7 +129,8 @@  discard block
 block discarded – undo
119 129
      */
120 130
     private function renderTables(Table $grid, array $header, Database $database): void
121 131
     {
122
-        foreach ($database->getTables() as $table) {
132
+        foreach ($database->getTables() as $table)
133
+        {
123 134
             $grid->addRow(
124 135
                 array_merge(
125 136
                     $header,
Please login to merge, or discard this patch.
src/Framework/Command/Database/TableCommand.php 3 patches
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
         $database = $dbal->database($this->option('database'));
45 45
         $schema = $database->table($this->argument('table'))->getSchema();
46 46
 
47
-        if (!$schema->exists()) {
47
+        if (!$schema->exists()){
48 48
             throw new DBALException(
49 49
                 "Table {$database->getName()}.{$this->argument('table')} does not exists."
50 50
             );
@@ -58,11 +58,11 @@  discard block
 block discarded – undo
58 58
 
59 59
         $this->describeColumns($schema);
60 60
 
61
-        if (!empty($indexes = $schema->getIndexes())) {
61
+        if (!empty($indexes = $schema->getIndexes())){
62 62
             $this->describeIndexes($database, $indexes);
63 63
         }
64 64
 
65
-        if (!empty($foreignKeys = $schema->getForeignKeys())) {
65
+        if (!empty($foreignKeys = $schema->getForeignKeys())){
66 66
             $this->describeForeignKeys($database, $foreignKeys);
67 67
         }
68 68
 
@@ -84,10 +84,10 @@  discard block
 block discarded – undo
84 84
             ]
85 85
         );
86 86
 
87
-        foreach ($schema->getColumns() as $column) {
87
+        foreach ($schema->getColumns() as $column){
88 88
             $name = $column->getName();
89 89
 
90
-            if (in_array($column->getName(), $schema->getPrimaryKeys(), true)) {
90
+            if (in_array($column->getName(), $schema->getPrimaryKeys(), true)){
91 91
                 $name = "<fg=magenta>{$name}</fg=magenta>";
92 92
             }
93 93
 
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
         );
121 121
 
122 122
         $indexesTable = $this->table(['Name:', 'Type:', 'Columns:']);
123
-        foreach ($indexes as $index) {
123
+        foreach ($indexes as $index){
124 124
             $indexesTable->addRow(
125 125
                 [
126 126
                     $index->getName(),
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
             ]
156 156
         );
157 157
 
158
-        foreach ($foreignKeys as $reference) {
158
+        foreach ($foreignKeys as $reference){
159 159
             $foreignTable->addRow(
160 160
                 [
161 161
                     $reference->getName(),
@@ -180,13 +180,13 @@  discard block
 block discarded – undo
180 180
     {
181 181
         $defaultValue = $column->getDefaultValue();
182 182
 
183
-        if ($defaultValue instanceof FragmentInterface) {
183
+        if ($defaultValue instanceof FragmentInterface){
184 184
             $value = $driver->getQueryCompiler()->compile(new QueryParameters(), '', $defaultValue);
185 185
 
186 186
             return "<info>{$value}</info>";
187 187
         }
188 188
 
189
-        if ($defaultValue instanceof \DateTimeInterface) {
189
+        if ($defaultValue instanceof \DateTimeInterface){
190 190
             $defaultValue = $defaultValue->format('c');
191 191
         }
192 192
 
@@ -203,11 +203,11 @@  discard block
 block discarded – undo
203 203
 
204 204
         $abstractType = $column->getAbstractType();
205 205
 
206
-        if ($column->getSize()) {
206
+        if ($column->getSize()){
207 207
             $type .= " ({$column->getSize()})";
208 208
         }
209 209
 
210
-        if ($abstractType === 'decimal') {
210
+        if ($abstractType === 'decimal'){
211 211
             $type .= " ({$column->getPrecision()}, {$column->getScale()})";
212 212
         }
213 213
 
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
     {
223 223
         $abstractType = $column->getAbstractType();
224 224
 
225
-        if (in_array($abstractType, ['primary', 'bigPrimary'])) {
225
+        if (in_array($abstractType, ['primary', 'bigPrimary'])){
226 226
             $abstractType = "<fg=magenta>{$abstractType}</fg=magenta>";
227 227
         }
228 228
 
Please login to merge, or discard this patch.
Braces   +24 added lines, -12 removed lines patch added patch discarded remove patch
@@ -44,7 +44,8 @@  discard block
 block discarded – undo
44 44
         $database = $dbal->database($this->option('database'));
45 45
         $schema = $database->table($this->argument('table'))->getSchema();
46 46
 
47
-        if (!$schema->exists()) {
47
+        if (!$schema->exists())
48
+        {
48 49
             throw new DBALException(
49 50
                 "Table {$database->getName()}.{$this->argument('table')} does not exists."
50 51
             );
@@ -58,11 +59,13 @@  discard block
 block discarded – undo
58 59
 
59 60
         $this->describeColumns($schema);
60 61
 
61
-        if (!empty($indexes = $schema->getIndexes())) {
62
+        if (!empty($indexes = $schema->getIndexes()))
63
+        {
62 64
             $this->describeIndexes($database, $indexes);
63 65
         }
64 66
 
65
-        if (!empty($foreignKeys = $schema->getForeignKeys())) {
67
+        if (!empty($foreignKeys = $schema->getForeignKeys()))
68
+        {
66 69
             $this->describeForeignKeys($database, $foreignKeys);
67 70
         }
68 71
 
@@ -84,10 +87,12 @@  discard block
 block discarded – undo
84 87
             ]
85 88
         );
86 89
 
87
-        foreach ($schema->getColumns() as $column) {
90
+        foreach ($schema->getColumns() as $column)
91
+        {
88 92
             $name = $column->getName();
89 93
 
90
-            if (in_array($column->getName(), $schema->getPrimaryKeys(), true)) {
94
+            if (in_array($column->getName(), $schema->getPrimaryKeys(), true))
95
+            {
91 96
                 $name = "<fg=magenta>{$name}</fg=magenta>";
92 97
             }
93 98
 
@@ -120,7 +125,8 @@  discard block
 block discarded – undo
120 125
         );
121 126
 
122 127
         $indexesTable = $this->table(['Name:', 'Type:', 'Columns:']);
123
-        foreach ($indexes as $index) {
128
+        foreach ($indexes as $index)
129
+        {
124 130
             $indexesTable->addRow(
125 131
                 [
126 132
                     $index->getName(),
@@ -155,7 +161,8 @@  discard block
 block discarded – undo
155 161
             ]
156 162
         );
157 163
 
158
-        foreach ($foreignKeys as $reference) {
164
+        foreach ($foreignKeys as $reference)
165
+        {
159 166
             $foreignTable->addRow(
160 167
                 [
161 168
                     $reference->getName(),
@@ -180,13 +187,15 @@  discard block
 block discarded – undo
180 187
     {
181 188
         $defaultValue = $column->getDefaultValue();
182 189
 
183
-        if ($defaultValue instanceof FragmentInterface) {
190
+        if ($defaultValue instanceof FragmentInterface)
191
+        {
184 192
             $value = $driver->getQueryCompiler()->compile(new QueryParameters(), '', $defaultValue);
185 193
 
186 194
             return "<info>{$value}</info>";
187 195
         }
188 196
 
189
-        if ($defaultValue instanceof \DateTimeInterface) {
197
+        if ($defaultValue instanceof \DateTimeInterface)
198
+        {
190 199
             $defaultValue = $defaultValue->format('c');
191 200
         }
192 201
 
@@ -203,11 +212,13 @@  discard block
 block discarded – undo
203 212
 
204 213
         $abstractType = $column->getAbstractType();
205 214
 
206
-        if ($column->getSize()) {
215
+        if ($column->getSize())
216
+        {
207 217
             $type .= " ({$column->getSize()})";
208 218
         }
209 219
 
210
-        if ($abstractType === 'decimal') {
220
+        if ($abstractType === 'decimal')
221
+        {
211 222
             $type .= " ({$column->getPrecision()}, {$column->getScale()})";
212 223
         }
213 224
 
@@ -222,7 +233,8 @@  discard block
 block discarded – undo
222 233
     {
223 234
         $abstractType = $column->getAbstractType();
224 235
 
225
-        if (in_array($abstractType, ['primary', 'bigPrimary'])) {
236
+        if (in_array($abstractType, ['primary', 'bigPrimary']))
237
+        {
226 238
             $abstractType = "<fg=magenta>{$abstractType}</fg=magenta>";
227 239
         }
228 240
 
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
 
44 44
         if (!$schema->exists()) {
45 45
             throw new DBALException(
46
-                "Table {$database->getName()}.{$this->argument('table')} does not exists."
46
+                "table {$database->getName()}.{$this->argument('table')} does not exists."
47 47
             );
48 48
         }
49 49
 
Please login to merge, or discard this patch.
src/Framework/Command/Cycle/SyncCommand.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
 
44 44
         $memory->saveData('cycle', $schema);
45 45
 
46
-        if ($show->hasChanges()) {
46
+        if ($show->hasChanges()){
47 47
             $this->writeln("\n<info>ORM Schema has been synchronized</info>");
48 48
         }
49 49
     }
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,8 @@
 block discarded – undo
43 43
 
44 44
         $memory->saveData('cycle', $schema);
45 45
 
46
-        if ($show->hasChanges()) {
46
+        if ($show->hasChanges())
47
+        {
47 48
             $this->writeln("\n<info>ORM Schema has been synchronized</info>");
48 49
         }
49 50
     }
Please login to merge, or discard this patch.
src/Framework/Command/Cycle/MigrateCommand.php 2 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -56,12 +56,12 @@  discard block
 block discarded – undo
56 56
         Migrator $migrator,
57 57
         Console $console
58 58
     ): void {
59
-        if (!$this->verifyConfigured()) {
59
+        if (!$this->verifyConfigured()){
60 60
             return;
61 61
         }
62 62
 
63
-        foreach ($migrator->getMigrations() as $migration) {
64
-            if ($migration->getState()->getStatus() !== State::STATUS_EXECUTED) {
63
+        foreach ($migrator->getMigrations() as $migration){
64
+            if ($migration->getState()->getStatus() !== State::STATUS_EXECUTED){
65 65
                 $this->writeln('<fg=red>Outstanding migrations found, run `migrate` first.</fg=red>');
66 66
                 return;
67 67
             }
@@ -76,10 +76,10 @@  discard block
 block discarded – undo
76 76
 
77 77
         $memory->saveData('cycle', $schema);
78 78
 
79
-        if ($show->hasChanges()) {
79
+        if ($show->hasChanges()){
80 80
             (new Compiler())->compile($registry, [$migrations]);
81 81
 
82
-            if ($this->option('run')) {
82
+            if ($this->option('run')){
83 83
                 $console->run('migrate', [], $this->output);
84 84
             }
85 85
         }
Please login to merge, or discard this patch.
Braces   +10 added lines, -5 removed lines patch added patch discarded remove patch
@@ -56,12 +56,15 @@  discard block
 block discarded – undo
56 56
         Migrator $migrator,
57 57
         Console $console
58 58
     ): void {
59
-        if (!$this->verifyConfigured()) {
59
+        if (!$this->verifyConfigured())
60
+        {
60 61
             return;
61 62
         }
62 63
 
63
-        foreach ($migrator->getMigrations() as $migration) {
64
-            if ($migration->getState()->getStatus() !== State::STATUS_EXECUTED) {
64
+        foreach ($migrator->getMigrations() as $migration)
65
+        {
66
+            if ($migration->getState()->getStatus() !== State::STATUS_EXECUTED)
67
+            {
65 68
                 $this->writeln('<fg=red>Outstanding migrations found, run `migrate` first.</fg=red>');
66 69
                 return;
67 70
             }
@@ -76,10 +79,12 @@  discard block
 block discarded – undo
76 79
 
77 80
         $memory->saveData('cycle', $schema);
78 81
 
79
-        if ($show->hasChanges()) {
82
+        if ($show->hasChanges())
83
+        {
80 84
             (new Compiler())->compile($registry, [$migrations]);
81 85
 
82
-            if ($this->option('run')) {
86
+            if ($this->option('run'))
87
+            {
83 88
                 $console->run('migrate', [], $this->output);
84 89
             }
85 90
         }
Please login to merge, or discard this patch.
src/Framework/Command/Migrate/StatusCommand.php 2 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -28,18 +28,18 @@  discard block
 block discarded – undo
28 28
      */
29 29
     public function perform(FilesInterface $files): void
30 30
     {
31
-        if (!$this->verifyConfigured()) {
31
+        if (!$this->verifyConfigured()){
32 32
             return;
33 33
         }
34 34
 
35
-        if (empty($this->migrator->getMigrations())) {
35
+        if (empty($this->migrator->getMigrations())){
36 36
             $this->writeln('<comment>No migrations were found.</comment>');
37 37
 
38 38
             return;
39 39
         }
40 40
 
41 41
         $table = $this->table(['Migration', 'Created at', 'Executed at']);
42
-        foreach ($this->migrator->getMigrations() as $migration) {
42
+        foreach ($this->migrator->getMigrations() as $migration){
43 43
             $state = $migration->getState();
44 44
 
45 45
             $table->addRow(
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
                     $state->getTimeCreated()->format('Y-m-d H:i:s'),
49 49
                     $state->getStatus() == State::STATUS_PENDING
50 50
                         ? self::PENDING
51
-                        : '<info>' . $state->getTimeExecuted()->format('Y-m-d H:i:s') . '</info>'
51
+                        : '<info>'.$state->getTimeExecuted()->format('Y-m-d H:i:s').'</info>'
52 52
                 ]
53 53
             );
54 54
         }
Please login to merge, or discard this patch.
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -28,18 +28,21 @@
 block discarded – undo
28 28
      */
29 29
     public function perform(FilesInterface $files): void
30 30
     {
31
-        if (!$this->verifyConfigured()) {
31
+        if (!$this->verifyConfigured())
32
+        {
32 33
             return;
33 34
         }
34 35
 
35
-        if (empty($this->migrator->getMigrations())) {
36
+        if (empty($this->migrator->getMigrations()))
37
+        {
36 38
             $this->writeln('<comment>No migrations were found.</comment>');
37 39
 
38 40
             return;
39 41
         }
40 42
 
41 43
         $table = $this->table(['Migration', 'Created at', 'Executed at']);
42
-        foreach ($this->migrator->getMigrations() as $migration) {
44
+        foreach ($this->migrator->getMigrations() as $migration)
45
+        {
43 46
             $state = $migration->getState();
44 47
 
45 48
             $table->addRow(
Please login to merge, or discard this patch.
src/Framework/Command/Migrate/RollbackCommand.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -24,14 +24,14 @@  discard block
 block discarded – undo
24 24
      */
25 25
     public function perform(): void
26 26
     {
27
-        if (!$this->verifyConfigured() || !$this->verifyEnvironment()) {
27
+        if (!$this->verifyConfigured() || !$this->verifyEnvironment()){
28 28
             //Making sure we can safely migrate in this environment
29 29
             return;
30 30
         }
31 31
 
32 32
         $found = false;
33 33
         $count = !$this->option('all') ? 1 : PHP_INT_MAX;
34
-        while ($count > 0 && ($migration = $this->migrator->rollback())) {
34
+        while ($count > 0 && ($migration = $this->migrator->rollback())){
35 35
             $found = true;
36 36
             $count--;
37 37
             $this->sprintf(
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
             );
41 41
         }
42 42
 
43
-        if (!$found) {
43
+        if (!$found){
44 44
             $this->writeln('<fg=red>No executed migrations were found.</fg=red>');
45 45
         }
46 46
     }
Please login to merge, or discard this patch.
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -24,14 +24,16 @@  discard block
 block discarded – undo
24 24
      */
25 25
     public function perform(): void
26 26
     {
27
-        if (!$this->verifyConfigured() || !$this->verifyEnvironment()) {
27
+        if (!$this->verifyConfigured() || !$this->verifyEnvironment())
28
+        {
28 29
             //Making sure we can safely migrate in this environment
29 30
             return;
30 31
         }
31 32
 
32 33
         $found = false;
33 34
         $count = !$this->option('all') ? 1 : PHP_INT_MAX;
34
-        while ($count > 0 && ($migration = $this->migrator->rollback())) {
35
+        while ($count > 0 && ($migration = $this->migrator->rollback()))
36
+        {
35 37
             $found = true;
36 38
             $count--;
37 39
             $this->sprintf(
@@ -40,7 +42,8 @@  discard block
 block discarded – undo
40 42
             );
41 43
         }
42 44
 
43
-        if (!$found) {
45
+        if (!$found)
46
+        {
44 47
             $this->writeln('<fg=red>No executed migrations were found.</fg=red>');
45 48
         }
46 49
     }
Please login to merge, or discard this patch.
src/Framework/Command/Migrate/ReplayCommand.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
      */
28 28
     public function perform(Console $console): void
29 29
     {
30
-        if (!$this->verifyEnvironment()) {
30
+        if (!$this->verifyEnvironment()){
31 31
             //Making sure we can safely migrate in this environment
32 32
             return;
33 33
         }
@@ -35,9 +35,9 @@  discard block
 block discarded – undo
35 35
         $rollback = ['--force' => true];
36 36
         $migrate = ['--force' => true];
37 37
 
38
-        if ($this->option('all')) {
38
+        if ($this->option('all')){
39 39
             $rollback['--all'] = true;
40
-        } else {
40
+        }else{
41 41
             $migrate['--one'] = true;
42 42
         }
43 43
 
Please login to merge, or discard this patch.
Braces   +7 added lines, -3 removed lines patch added patch discarded remove patch
@@ -27,7 +27,8 @@  discard block
 block discarded – undo
27 27
      */
28 28
     public function perform(Console $console): void
29 29
     {
30
-        if (!$this->verifyEnvironment()) {
30
+        if (!$this->verifyEnvironment())
31
+        {
31 32
             //Making sure we can safely migrate in this environment
32 33
             return;
33 34
         }
@@ -35,9 +36,12 @@  discard block
 block discarded – undo
35 36
         $rollback = ['--force' => true];
36 37
         $migrate = ['--force' => true];
37 38
 
38
-        if ($this->option('all')) {
39
+        if ($this->option('all'))
40
+        {
39 41
             $rollback['--all'] = true;
40
-        } else {
42
+        }
43
+        else
44
+        {
41 45
             $migrate['--one'] = true;
42 46
         }
43 47
 
Please login to merge, or discard this patch.
src/Framework/Command/Migrate/MigrateCommand.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -24,14 +24,14 @@  discard block
 block discarded – undo
24 24
      */
25 25
     public function perform(): void
26 26
     {
27
-        if (!$this->verifyConfigured() || !$this->verifyEnvironment()) {
27
+        if (!$this->verifyConfigured() || !$this->verifyEnvironment()){
28 28
             return;
29 29
         }
30 30
 
31 31
         $found = false;
32 32
         $count = $this->option('one') ? 1 : PHP_INT_MAX;
33 33
 
34
-        while ($count > 0 && ($migration = $this->migrator->run())) {
34
+        while ($count > 0 && ($migration = $this->migrator->run())){
35 35
             $found = true;
36 36
             $count--;
37 37
 
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
             );
42 42
         }
43 43
 
44
-        if (!$found) {
44
+        if (!$found){
45 45
             $this->writeln('<fg=red>No outstanding migrations were found.</fg=red>');
46 46
         }
47 47
     }
Please login to merge, or discard this patch.
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -24,14 +24,16 @@  discard block
 block discarded – undo
24 24
      */
25 25
     public function perform(): void
26 26
     {
27
-        if (!$this->verifyConfigured() || !$this->verifyEnvironment()) {
27
+        if (!$this->verifyConfigured() || !$this->verifyEnvironment())
28
+        {
28 29
             return;
29 30
         }
30 31
 
31 32
         $found = false;
32 33
         $count = $this->option('one') ? 1 : PHP_INT_MAX;
33 34
 
34
-        while ($count > 0 && ($migration = $this->migrator->run())) {
35
+        while ($count > 0 && ($migration = $this->migrator->run()))
36
+        {
35 37
             $found = true;
36 38
             $count--;
37 39
 
@@ -41,7 +43,8 @@  discard block
 block discarded – undo
41 43
             );
42 44
         }
43 45
 
44
-        if (!$found) {
46
+        if (!$found)
47
+        {
45 48
             $this->writeln('<fg=red>No outstanding migrations were found.</fg=red>');
46 49
         }
47 50
     }
Please login to merge, or discard this patch.
src/Framework/Command/Migrate/AbstractCommand.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
      */
42 42
     protected function verifyConfigured(): bool
43 43
     {
44
-        if (!$this->migrator->isConfigured()) {
44
+        if (!$this->migrator->isConfigured()){
45 45
             $this->writeln(
46 46
                 "<fg=red>Migrations are not configured yet, run '<info>migrate:init</info>' first.</fg=red>"
47 47
             );
@@ -59,14 +59,14 @@  discard block
 block discarded – undo
59 59
      */
60 60
     protected function verifyEnvironment(): bool
61 61
     {
62
-        if ($this->option('force') || $this->config->isSafe()) {
62
+        if ($this->option('force') || $this->config->isSafe()){
63 63
             //Safe to run
64 64
             return true;
65 65
         }
66 66
 
67 67
         $this->writeln('<fg=red>Confirmation is required to run migrations!</fg=red>');
68 68
 
69
-        if (!$this->askConfirmation()) {
69
+        if (!$this->askConfirmation()){
70 70
             $this->writeln('<comment>Cancelling operation...</comment>');
71 71
 
72 72
             return false;
Please login to merge, or discard this patch.
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -41,7 +41,8 @@  discard block
 block discarded – undo
41 41
      */
42 42
     protected function verifyConfigured(): bool
43 43
     {
44
-        if (!$this->migrator->isConfigured()) {
44
+        if (!$this->migrator->isConfigured())
45
+        {
45 46
             $this->writeln(
46 47
                 "<fg=red>Migrations are not configured yet, run '<info>migrate:init</info>' first.</fg=red>"
47 48
             );
@@ -59,14 +60,16 @@  discard block
 block discarded – undo
59 60
      */
60 61
     protected function verifyEnvironment(): bool
61 62
     {
62
-        if ($this->option('force') || $this->config->isSafe()) {
63
+        if ($this->option('force') || $this->config->isSafe())
64
+        {
63 65
             //Safe to run
64 66
             return true;
65 67
         }
66 68
 
67 69
         $this->writeln('<fg=red>Confirmation is required to run migrations!</fg=red>');
68 70
 
69
-        if (!$this->askConfirmation()) {
71
+        if (!$this->askConfirmation())
72
+        {
70 73
             $this->writeln('<comment>Cancelling operation...</comment>');
71 74
 
72 75
             return false;
Please login to merge, or discard this patch.