@@ -64,11 +64,11 @@ |
||
64 | 64 | return (string) $this->currency; |
65 | 65 | } |
66 | 66 | |
67 | - /** |
|
68 | - * Sets the current currency |
|
69 | - * @param $currency The currency (i.e. 'EUR') |
|
70 | - * @return Void |
|
71 | - */ |
|
67 | + /** |
|
68 | + * Sets the current currency |
|
69 | + * @param $currency The currency (i.e. 'EUR') |
|
70 | + * @return Void |
|
71 | + */ |
|
72 | 72 | public function setCurrency(string $currency) |
73 | 73 | { |
74 | 74 | $this->currency = $currency; |
@@ -176,9 +176,9 @@ |
||
176 | 176 | $free = $lines->where('is_free', true)->toBase(); |
177 | 177 | $complimentary = $lines->where('is_complimentary', true)->toBase(); |
178 | 178 | $other = $lines |
179 | - ->where('is_free', false) |
|
180 | - ->where('is_complimentary', false) |
|
181 | - ->toBase(); |
|
179 | + ->where('is_free', false) |
|
180 | + ->where('is_complimentary', false) |
|
181 | + ->toBase(); |
|
182 | 182 | |
183 | 183 | $this->bill->total = $other->sum('amount'); |
184 | 184 | $this->bill->tax = $other->sum('tax'); |
@@ -11,10 +11,10 @@ |
||
11 | 11 | class Invoice extends Facade |
12 | 12 | { |
13 | 13 | /** |
14 | - * Get the registered name of the component. |
|
15 | - * |
|
16 | - * @return string |
|
17 | - */ |
|
14 | + * Get the registered name of the component. |
|
15 | + * |
|
16 | + * @return string |
|
17 | + */ |
|
18 | 18 | protected static function getFacadeAccessor() |
19 | 19 | { |
20 | 20 | return 'invoice'; |