Passed
Push — master ( cea58c...61c995 )
by Ajit
08:56 queued 04:27
created
app/Invoice_detail.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
             'item_amount',
17 17
             'created_by',
18 18
             'updated_by',
19
-     ];
19
+        ];
20 20
 
21 21
     public function createdBy()
22 22
     {
Please login to merge, or discard this patch.
app/Expense.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -11,15 +11,15 @@
 block discarded – undo
11 11
     protected $table = 'trn_expenses';
12 12
 
13 13
     protected $fillable = [
14
-          'name',
15
-          'category_id',
16
-          'amount',
17
-          'due_date',
18
-          'repeat',
19
-          'note',
20
-          'paid',
21
-          'created_by',
22
-          'updated_by',
14
+            'name',
15
+            'category_id',
16
+            'amount',
17
+            'due_date',
18
+            'repeat',
19
+            'note',
20
+            'paid',
21
+            'created_by',
22
+            'updated_by',
23 23
     ];
24 24
 
25 25
     //Eloquence Search mapping
Please login to merge, or discard this patch.