Completed
Pull Request — master (#53)
by
unknown
03:42
created
src/Command/LoadFixturesCommand.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
     /**
Please login to merge, or discard this patch.