Completed
Branch master (40bf00)
by Kenneth
19:40
created
src/DoctrineFixturesModule/Command/LoadCommand.php 2 patches
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -23,9 +23,7 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -117,7 +117,7 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
src/DoctrineFixturesModule/Service/FixtureFactory.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -49,9 +49,7 @@
 block discarded – undo
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
      */
Please login to merge, or discard this patch.
src/DoctrineFixturesModule/Module.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.