@@ -164,8 +164,8 @@ discard block |
||
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 |
||
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'], '\\'); |