Skip to content

Commit 0890fd3

Browse files
committed
bug #1360 Fix UseStatementGenerator usage in MakeFixtures.php (beesofts)
This PR was merged into the 1.x-dev branch. Discussion ---------- Fix UseStatementGenerator usage in MakeFixtures.php UseStatement is not used as it should Commits ------- b25fef4 Fix UseStatementGenerator usage in MakeFixtures.php
2 parents d5684e5 + b25fef4 commit 0890fd3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Maker/MakeFixtures.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ public function generate(InputInterface $input, ConsoleStyle $io, Generator $gen
5555
);
5656

5757
$useStatements = new UseStatementGenerator([
58-
Fixture::class => null,
59-
ObjectManager::class => null,
58+
Fixture::class,
59+
ObjectManager::class,
6060
]);
6161

6262
$generator->generateClass(

0 commit comments

Comments
 (0)