Passed
Push — master ( a958bc...8e2bab )
by Ron
01:34
created
src/Eloquent/Common/World.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -8,9 +8,9 @@  discard block
 block discarded – undo
8 8
 {
9 9
     protected $table = 'worlds';
10 10
 
11
-    protected $fillable = [ 'galaxy_id', 'map_id', 'name', 'display_name', 'use_whitelist', 'use_blacklist' ];
11
+    protected $fillable = ['galaxy_id', 'map_id', 'name', 'display_name', 'use_whitelist', 'use_blacklist'];
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
     {
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
 
40 40
     public function scopeOnlineCount($query)
41 41
     {
42
-        return $query->withCount(['online' => function ($query) {
42
+        return $query->withCount(['online' => function($query) {
43 43
             $query->online();
44 44
         }]);
45 45
     }
Please login to merge, or discard this patch.