Completed
Push — master ( 409ed4...508eb7 )
by Ron
02:37
created
app/Http/Resources/WorldResource.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -16,15 +16,15 @@
 block discarded – undo
16 16
         ];
17 17
 
18 18
         if ($this->investors_count !== null) {
19
-            $data['investors'] = $this->investors_count;
19
+            $data[ 'investors' ] = $this->investors_count;
20 20
         }
21 21
 
22 22
         if ($this->online_count !== null) {
23
-            $data['online'] = $this->online_count;
23
+            $data[ 'online' ] = $this->online_count;
24 24
         }
25 25
 
26 26
         if ($this->updated_at !== null) {
27
-            $data['updated_at'] = $this->updated_at->format('Y-m-d H:i:s');
27
+            $data[ 'updated_at' ] = $this->updated_at->format('Y-m-d H:i:s');
28 28
         }
29 29
 
30 30
         return $data;
Please login to merge, or discard this patch.