@@ -23,9 +23,7 @@ |
||
23 | 23 | use Symfony\Component\Console\Output\OutputInterface; |
24 | 24 | use Symfony\Component\Console\Question\ConfirmationQuestion; |
25 | 25 | use Symfony\Component\Console\Command\Command; |
26 | -use Symfony\Component\Console\Input\InputArgument; |
|
27 | 26 | use Symfony\Component\Console\Input\InputOption; |
28 | -use Doctrine\ORM\Tools\SchemaTool; |
|
29 | 27 | use Doctrine\Common\DataFixtures\Executor\ORMExecutor; |
30 | 28 | use Doctrine\Common\DataFixtures\Purger\ORMPurger; |
31 | 29 | use DoctrineFixturesModule\Loader\ServiceLocatorAwareLoader; |
@@ -117,7 +117,7 @@ |
||
117 | 117 | $fixtures = $loader->getFixtures(); |
118 | 118 | if (!$fixtures) { |
119 | 119 | throw new \InvalidArgumentException( |
120 | - sprintf('Could not find any fixtures to load in: %s', "\n\n- ".implode("\n- ", $paths)) |
|
120 | + sprintf('Could not find any fixtures to load in: %s', "\n\n- " . implode("\n- ", $paths)) |
|
121 | 121 | ); |
122 | 122 | } |
123 | 123 | $purger = new ORMPurger($em); |
@@ -49,9 +49,7 @@ |
||
49 | 49 | /** |
50 | 50 | * Gets options from configuration based on name. |
51 | 51 | * |
52 | - * @param ServiceLocatorInterface $sl |
|
53 | 52 | * @param string $key |
54 | - * @param null|string $name |
|
55 | 53 | * @return \Zend\Stdlib\AbstractOptions |
56 | 54 | * @throws \RuntimeException |
57 | 55 | */ |
@@ -62,7 +62,7 @@ |
||
62 | 62 | $events = $e->getEventManager()->getSharedManager(); |
63 | 63 | |
64 | 64 | // Attach to helper set event and load the entity manager helper. |
65 | - $events->attach('doctrine', 'loadCli.post', function (EventInterface $e) { |
|
65 | + $events->attach('doctrine', 'loadCli.post', function(EventInterface $e) { |
|
66 | 66 | /* @var $cli \Symfony\Component\Console\Application */ |
67 | 67 | $cli = $e->getTarget(); |
68 | 68 |