Completed
Push — master ( 01a2b5...abb9d0 )
by Alexander
02:01
created
src/Lib/Service/Migrator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
                     continue;
62 62
                 }
63 63
 
64
-                $commands         = $migration->getCommands();
64
+                $commands = $migration->getCommands();
65 65
 
66 66
                 foreach ($commands as $commandName => $arguments) {
67 67
                     $currentCommand = $commandName;
Please login to merge, or discard this patch.
tests/Lib/Service/MigratorTest.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -38,10 +38,10 @@  discard block
 block discarded – undo
38 38
         $infoBuilder = $this->createMock(Builder::class);
39 39
 
40 40
         $connection->expects(static::exactly(2))->method('table')
41
-                   ->willReturnOnConsecutiveCalls(
42
-                       $builder,
43
-                       $infoBuilder
44
-                   )
41
+                    ->willReturnOnConsecutiveCalls(
42
+                        $builder,
43
+                        $infoBuilder
44
+                    )
45 45
         ;
46 46
 
47 47
         $builder->expects(static::once())->method('insert');
@@ -79,10 +79,10 @@  discard block
 block discarded – undo
79 79
         $infoBuilder = $this->createMock(Builder::class);
80 80
 
81 81
         $connection->expects(static::exactly(2))->method('table')
82
-                   ->willReturnOnConsecutiveCalls(
83
-                       $builder,
84
-                       $infoBuilder
85
-                   )
82
+                    ->willReturnOnConsecutiveCalls(
83
+                        $builder,
84
+                        $infoBuilder
85
+                    )
86 86
         ;
87 87
 
88 88
         $infoBuilder->expects(static::once())->method('insert');
Please login to merge, or discard this patch.