Completed
Push — master ( b51238...70c289 )
by Brandon
18s
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.
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
     {
99 99
         $time = new Carbon($value, Auth::user()->timezone);
100 100
         $time = $time->setTimezone('UTC');
101
-        $this->attributes['open_time'] = $time;
101
+        $this->attributes[ 'open_time' ] = $time;
102 102
     }
103 103
     
104 104
     /**
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
     {
112 112
         $time = new Carbon($value, Auth::user()->timezone);
113 113
         $time = $time->setTimezone('UTC');
114
-        $this->attributes['close_time'] = $time;
114
+        $this->attributes[ 'close_time' ] = $time;
115 115
     }
116 116
     
117 117
     /**
Please login to merge, or discard this patch.