Test Failed
Pull Request — master (#6)
by Alex
08:01
created
src/Command/ImportCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
     {
58 58
         $output->writeln('Executing data fixtures...');
59 59
 
60
-        $purgeMode = (int)$input->getOption('purge-with-truncate');
60
+        $purgeMode = (int) $input->getOption('purge-with-truncate');
61 61
 
62 62
         if (null !== $this->purger && $purgeMode) {
63 63
             $output->writeln('Purging existing database data');
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
             $this->purger->setPurgeMode((2 === $purgeMode) ? 2 : 1);
66 66
         }
67 67
 
68
-        $this->executor->execute($this->fixtures, (bool)$input->getOption('append'));
68
+        $this->executor->execute($this->fixtures, (bool) $input->getOption('append'));
69 69
 
70 70
         $output->writeln(sprintf('Completed execution of \'%d\' fixtures', count($this->fixtures)));
71 71
 
Please login to merge, or discard this patch.