Passed
Branch master (07c18b)
by Douglas
04:16
created
src/AntiMattr/MongoDB/Migrations/Tools/Console/Command/StatusCommand.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -141,8 +141,8 @@
 block discarded – undo
141 141
 
142 142
                 $table = new Table($output);
143 143
                 $table->setHeaders(['Version', 'Date Migrated', 'Description'])
144
-                      ->setRows($rows)
145
-                      ->render();
144
+                        ->setRows($rows)
145
+                        ->render();
146 146
             }
147 147
 
148 148
             $executedUnavailableMigrations = $configuration->getUnavailableMigratedVersions();
Please login to merge, or discard this patch.
src/AntiMattr/MongoDB/Migrations/Tools/Console/Command/AbstractCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
74 74
     protected function getMigrationConfiguration(InputInterface $input, OutputInterface $output)
75 75
     {
76 76
         if (!$this->configuration) {
77
-            $outputWriter = new OutputWriter(function ($message) use ($output) {
77
+            $outputWriter = new OutputWriter(function($message) use ($output) {
78 78
                 return $output->writeln($message);
79 79
             });
80 80
 
Please login to merge, or discard this patch.
src/AntiMattr/MongoDB/Migrations/OutputWriter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
     public function __construct(\Closure $closure = null)
22 22
     {
23 23
         if (null === $closure) {
24
-            $closure = function ($message) {
24
+            $closure = function($message) {
25 25
             };
26 26
         }
27 27
         $this->closure = $closure;
Please login to merge, or discard this patch.