Completed
Pull Request — master (#1)
by Marek
03:16
created
Application/CarManagement/Command/Insurance/AddInsuranceDocumentCommand.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -32,9 +32,9 @@
 block discarded – undo
32 32
     {
33 33
         $car = $this->repository->find($this->carId);
34 34
         $insurance = new InsuranceDocument($this->insuranceId,
35
-                                           $this->document->title,
36
-                                           $this->document->description,
37
-                                           $this->document->source
35
+                                            $this->document->title,
36
+                                            $this->document->description,
37
+                                            $this->document->source
38 38
         );
39 39
 
40 40
         $car->addInsuranceDocument($this->insuranceId, $insurance);
Please login to merge, or discard this patch.
CarManagement/VehicleInspection/VehicleInspectionDuplicationChecker.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
         /** @var VehicleInspection $vehicleInspection */
24 24
         foreach ($existingVehicleInspection as $vehicleInspection) {
25 25
             if ($newVehicleInspection->getLastInspection() === $vehicleInspection->getLastInspection() ||
26
-               $newVehicleInspection->getId()             === $vehicleInspection->getId()
26
+               $newVehicleInspection->getId() === $vehicleInspection->getId()
27 27
             ) {
28 28
                 return true;
29 29
             }
Please login to merge, or discard this patch.