@@ -1,6 +1,6 @@ discard block  | 
                                                    ||
| 1 | 1 | <?php  | 
                                                        
| 2 | 2 | |
| 3 | -declare(strict_types=1);  | 
                                                        |
| 3 | +declare(strict_types = 1);  | 
                                                        |
| 4 | 4 | |
| 5 | 5 | namespace Facile\MongoDbBundle\Command;  | 
                                                        
| 6 | 6 | |
@@ -56,7 +56,7 @@ discard block  | 
                                                    ||
| 56 | 56 | );  | 
                                                        
| 57 | 57 | }  | 
                                                        
| 58 | 58 | |
| 59 | -        foreach ($fixtures as $fixture){ | 
                                                        |
| 59 | +        foreach ($fixtures as $fixture) { | 
                                                        |
| 60 | 60 | $this->loadFixture($fixture);  | 
                                                        
| 61 | 61 | }  | 
                                                        
| 62 | 62 | |
@@ -70,6 +70,6 @@ discard block  | 
                                                    ||
| 70 | 70 |      { | 
                                                        
| 71 | 71 | $indexList->loadData();  | 
                                                        
| 72 | 72 | $indexList->loadIndexes();  | 
                                                        
| 73 | -        $this->io->writeln('Loaded fixture: '. get_class($indexList)); | 
                                                        |
| 73 | +        $this->io->writeln('Loaded fixture: '.get_class($indexList)); | 
                                                        |
| 74 | 74 | }  | 
                                                        
| 75 | 75 | }  | 
                                                        
@@ -66,7 +66,7 @@  | 
                                                    ||
| 66 | 66 | |
| 67 | 67 | return array_reduce(  | 
                                                        
| 68 | 68 | $declared,  | 
                                                        
| 69 | -            function ($classList, string $className) use ($includedFiles) { | 
                                                        |
| 69 | +            function($classList, string $className) use ($includedFiles) { | 
                                                        |
| 70 | 70 | $reflClass = new \ReflectionClass($className);  | 
                                                        
| 71 | 71 | $sourceFile = $reflClass->getFileName();  | 
                                                        
| 72 | 72 | |