@@ -27,6 +27,9 @@ |
||
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; |
@@ -61,7 +61,6 @@ |
||
61 | 61 | } |
62 | 62 | |
63 | 63 | /** |
64 | - * @param string $action |
|
65 | 64 | * |
66 | 65 | * @return bool |
67 | 66 | */ |
@@ -39,11 +39,11 @@ |
||
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 | /** |