@@ -25,7 +25,7 @@ discard block |
||
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 |
||
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 |
||
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 | /** |