Completed
Push — master ( 70c289...58ea5e )
by Brandon
21s
created
app/Device.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
      *
26 26
      * @var array
27 27
      */
28
-    protected $hidden = ['token'];
28
+    protected $hidden = [ 'token' ];
29 29
     
30 30
     /**
31 31
      * The attributes that are mass assignable.
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
         else
120 120
             $time = new Carbon($value, 'UTC');
121 121
         
122
-        $this->attributes['open_time'] = $time;
122
+        $this->attributes[ 'open_time' ] = $time;
123 123
     }
124 124
     
125 125
     /**
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
         else
142 142
             $time = new Carbon($value, 'UTC');
143 143
         
144
-        $this->attributes['close_time'] = $time;
144
+        $this->attributes[ 'close_time' ] = $time;
145 145
     }
146 146
     
147 147
     /**
Please login to merge, or discard this patch.