Completed
Branch index_loading_feature (a31c33)
by Alessandro
02:52
created
src/Fixtures/MongoFixturesLoader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Facile\MongoDbBundle\Services;
6 6
 
Please login to merge, or discard this patch.
src/Command/LoadFixturesCommand.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.