Completed
Push — feature/fixing_cost ( f58af6...414fbf )
by Laurent
01:41
created
Infrastructure/Common/Routes/Route.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -4,8 +4,6 @@
 block discarded – undo
4 4
 namespace FlightLog\Infrastructure\Common\Routes;
5 5
 
6 6
 
7
-use FlightLog\Http\Web\Controller\WebController;
8
-
9 7
 final class Route
10 8
 {
11 9
 
Please login to merge, or discard this patch.
class/Damage/FlightDamage.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -39,11 +39,11 @@
 block discarded – undo
39 39
      */
40 40
     private function __construct(DamageAmount $amount, $billed, AuthorId $authorId, FlightId $flightId = null, DamageId $id = null)
41 41
     {
42
-       $this->flight = $flightId;
43
-       $this->amount = $amount;
44
-       $this->billed = $billed;
45
-       $this->author = $authorId;
46
-       $this->id = $id;
42
+        $this->flight = $flightId;
43
+        $this->amount = $amount;
44
+        $this->billed = $billed;
45
+        $this->author = $authorId;
46
+        $this->id = $id;
47 47
     }
48 48
 
49 49
     /**
Please login to merge, or discard this patch.