Completed
Push — feature/fixing_cost ( f58af6...414fbf )
by Laurent
01:41
created
Application/Damage/Command/CreateDamageCommand.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -27,6 +27,9 @@
 block discarded – undo
27 27
      */
28 28
     private $billId;
29 29
 
30
+    /**
31
+     * @param integer $authorId
32
+     */
30 33
     public function __construct($authorId)
31 34
     {
32 35
         $this->authorId = $authorId;
Please login to merge, or discard this patch.
Infrastructure/Common/Routes/Route.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,6 @@
 block discarded – undo
61 61
     }
62 62
 
63 63
     /**
64
-     * @param string $action
65 64
      *
66 65
      * @return bool
67 66
      */
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.