Passed
Push — master ( 6e3477...0928cb )
by Rodinei
04:30
created
app/BillPay.php 2 patches
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -6,19 +6,19 @@
 block discarded – undo
6 6
 
7 7
 class BillPay extends Model
8 8
 {
9
-	protected $fillable = ['date_launch','name','value','status','category_id'];
9
+    protected $fillable = ['date_launch','name','value','status','category_id'];
10 10
 
11
-	protected $casts = ['status' => 'boolean'];
11
+    protected $casts = ['status' => 'boolean'];
12 12
 
13
-	protected $appends = ['type'];
13
+    protected $appends = ['type'];
14 14
 
15 15
     public function category()
16 16
     {
17
-    	return $this->belongsTo('App\Category');
17
+        return $this->belongsTo('App\Category');
18 18
     }
19 19
 
20 20
     public function getTypeAttribute()
21 21
     {
22
-    	return "out";
22
+        return "out";
23 23
     }
24 24
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 
7 7
 class BillPay extends Model
8 8
 {
9
-	protected $fillable = ['date_launch','name','value','status','category_id'];
9
+	protected $fillable = ['date_launch', 'name', 'value', 'status', 'category_id'];
10 10
 
11 11
 	protected $casts = ['status' => 'boolean'];
12 12
 
Please login to merge, or discard this patch.
app/BillReceive.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,11 +14,11 @@
 block discarded – undo
14 14
 
15 15
     public function category()
16 16
     {
17
-    	return $this->belongsTo('App\Category');
17
+        return $this->belongsTo('App\Category');
18 18
     }
19 19
 
20 20
     public function getTypeAttribute()
21 21
     {
22
-    	return "in";
22
+        return "in";
23 23
     }
24 24
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 
7 7
 class BillReceive extends Model
8 8
 {
9
-    protected $fillable = ['date_launch','name','value','status','category_id'];
9
+    protected $fillable = ['date_launch', 'name', 'value', 'status', 'category_id'];
10 10
 
11 11
     protected $casts = ['status' => 'boolean'];
12 12
 
Please login to merge, or discard this patch.