Completed
Push — master ( bb238d...aad944 )
by
unknown
03:13
created
src/Fixtures/OrderedFixtureInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace Facile\MongoDbBundle\Fixtures;
4 4
 
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,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
 
@@ -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
     /**
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
      */
124 124
     protected function sortFixtures(&$fixtures): self
125 125
     {
126
-        usort($fixtures, function ($fixture1, $fixture2) {
126
+        usort($fixtures, function($fixture1, $fixture2) {
127 127
             $isFixture1Instance = ($fixture1 instanceof OrderedFixtureInterface);
128 128
             $isFixture2Instance = ($fixture2 instanceof OrderedFixtureInterface);
129 129
 
Please login to merge, or discard this patch.