Passed
Push — master ( 5b36a8...684bb1 )
by Ron
01:36
created
src/Eloquent/Common/Galaxy.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,9 +8,9 @@
 block discarded – undo
8 8
 {
9 9
     protected $table = 'galaxies';
10 10
 
11
-    protected $fillable = [ 'galaxy_type_id', 'galaxy_owner_id', 'name', 'display_name'];
11
+    protected $fillable = ['galaxy_type_id', 'galaxy_owner_id', 'name', 'display_name'];
12 12
 
13
-    protected $dates = [ 'created_at', 'updated_at'];
13
+    protected $dates = ['created_at', 'updated_at'];
14 14
 
15 15
     public function type()
16 16
     {
Please login to merge, or discard this patch.
src/Eloquent/Common/GalaxyType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,9 +8,9 @@
 block discarded – undo
8 8
 {
9 9
     protected $table = "galaxy_types";
10 10
 
11
-    protected $fillable = [ 'name', 'display_name' ];
11
+    protected $fillable = ['name', 'display_name'];
12 12
 
13
-    protected $dates = [ 'created_at', 'updated_at'];
13
+    protected $dates = ['created_at', 'updated_at'];
14 14
 
15 15
     public function galaxy()
16 16
     {
Please login to merge, or discard this patch.