Completed
Push — master ( 8941e2...59fded )
by Igor
03:58
created
src/Traits/FixtureTrait.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -164,8 +164,8 @@  discard block
 block discarded – undo
164 164
     protected function createFixtures(array $fixtures)
165 165
     {
166 166
         // normalize fixture configurations
167
-        $config = [];  // configuration provided in test case
168
-        $aliases = [];  // class name => alias or class name
167
+        $config = []; // configuration provided in test case
168
+        $aliases = []; // class name => alias or class name
169 169
 
170 170
         foreach ($fixtures as $name => $fixture) {
171 171
             if (!is_array($fixture)) {
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
             if ($fixture instanceof Fixture) {
190 190
                 $class = get_class($fixture);
191 191
                 $name = isset($aliases[$class]) ? $aliases[$class] : $class;
192
-                unset($instances[$name]);  // unset so that the fixture is added to the last in the next line
192
+                unset($instances[$name]); // unset so that the fixture is added to the last in the next line
193 193
                 $instances[$name] = $fixture;
194 194
             } else {
195 195
                 $class = ltrim($fixture['class'], '\\');
Please login to merge, or discard this patch.