@@ -57,7 +57,7 @@ discard block |
||
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 |
||
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 |