Passed
Pull Request — master (#13)
by Prasit
13:26
created
src/MoneyFormatter.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -64,11 +64,11 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/Services/BillService.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -176,9 +176,9 @@
 block discarded – undo
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');
Please login to merge, or discard this patch.
src/Facades/Invoice.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -11,10 +11,10 @@
 block discarded – undo
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';
Please login to merge, or discard this patch.