@@ -1,4 +1,4 @@ |
||
1 | -<?php declare(strict_types = 1); |
|
1 | +<?php declare(strict_types=1); |
|
2 | 2 | |
3 | 3 | namespace Facile\MongoDbBundle\Fixtures; |
4 | 4 |
@@ -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 | |
@@ -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 | /** |
@@ -123,7 +123,7 @@ discard block |
||
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 |