@@ -1,4 +1,4 @@ discard block |
||
1 | -<?php declare(strict_types = 1); |
|
1 | +<?php declare(strict_types=1); |
|
2 | 2 | |
3 | 3 | namespace Facile\MongoDbBundle\Command; |
4 | 4 | |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | ); |
58 | 58 | } |
59 | 59 | |
60 | - usort($fixtures, function ($a, $b) { |
|
60 | + usort($fixtures, function($a, $b) { |
|
61 | 61 | return strcmp(get_class($a), get_class($b)); |
62 | 62 | }); |
63 | 63 | |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | { |
76 | 76 | $indexList->loadData(); |
77 | 77 | $indexList->loadIndexes(); |
78 | - $this->io->writeln('Loaded fixture: '. \get_class($indexList)); |
|
78 | + $this->io->writeln('Loaded fixture: '.\get_class($indexList)); |
|
79 | 79 | } |
80 | 80 | |
81 | 81 | /** |