Completed
Push — master ( aa915a...3bfd0e )
by Joachim
22:00
created
Tests/Command/ReportCommandTest.php 1 patch
Doc Comments   +5 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,6 +56,10 @@  discard block
 block discarded – undo
56 56
         return $command;
57 57
     }
58 58
 
59
+    /**
60
+     * @param string $start
61
+     * @param string $end
62
+     */
59 63
     private function execute(ReportCommand $command, $manufacturer = 'manufacturer', $start = null, $end = null): CommandTester
60 64
     {
61 65
         $application = new Application();
@@ -83,7 +87,7 @@  discard block
 block discarded – undo
83 87
     }
84 88
 
85 89
     /**
86
-     * @return \PHPUnit_Framework_MockObject_MockObject|ContainerInterface
90
+     * @return null|ContainerInterface
87 91
      */
88 92
     private function getContainer()
89 93
     {
Please login to merge, or discard this patch.
ConsignmentService/ConsignmentService.php 1 patch
Unused Use Statements   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -6,15 +6,15 @@
 block discarded – undo
6 6
 
7 7
 use Doctrine\Common\Persistence\ManagerRegistry;
8 8
 use Doctrine\ORM\EntityManager;
9
-use Doctrine\ORM\OptimisticLockException;
10 9
 use Doctrine\ORM\ORMException;
10
+use Doctrine\ORM\OptimisticLockException;
11 11
 use Doctrine\ORM\QueryBuilder;
12
-use Loevgaard\DandomainConsignment\Entity\Generated\ReportInterface;
13
-use Loevgaard\DandomainConsignment\Entity\Report;
14
-use Loevgaard\DandomainConsignment\Repository\ReportRepository;
15 12
 use Loevgaard\DandomainConsignmentBundle\Event\ReportNotDeliveredEvent;
16 13
 use Loevgaard\DandomainConsignmentBundle\Exception\InvalidBarCodeException;
17 14
 use Loevgaard\DandomainConsignmentBundle\Exception\InvalidVendorNumberException;
15
+use Loevgaard\DandomainConsignment\Entity\Generated\ReportInterface;
16
+use Loevgaard\DandomainConsignment\Entity\Report;
17
+use Loevgaard\DandomainConsignment\Repository\ReportRepository;
18 18
 use Loevgaard\DandomainFoundation\Entity\Generated\ManufacturerInterface;
19 19
 use Loevgaard\DandomainStock\Entity\Generated\StockMovementInterface;
20 20
 use Loevgaard\DandomainStock\Entity\StockMovement;
Please login to merge, or discard this patch.