@@ -37,7 +37,7 @@ |
||
37 | 37 | */ |
38 | 38 | public function map(Router $router) |
39 | 39 | { |
40 | - $router->group(['namespace' => $this->namespace], function ($router) { |
|
40 | + $router->group([ 'namespace' => $this->namespace ], function($router) { |
|
41 | 41 | require app_path('Http/routes.php'); |
42 | 42 | }); |
43 | 43 | } |
@@ -51,14 +51,14 @@ |
||
51 | 51 | * |
52 | 52 | * @var array |
53 | 53 | */ |
54 | - protected $fillable = ['name', 'email', 'password']; |
|
54 | + protected $fillable = [ 'name', 'email', 'password' ]; |
|
55 | 55 | |
56 | 56 | /** |
57 | 57 | * The attributes excluded from the model's JSON form. |
58 | 58 | * |
59 | 59 | * @var array |
60 | 60 | */ |
61 | - protected $hidden = ['password', 'remember_token']; |
|
61 | + protected $hidden = [ 'password', 'remember_token' ]; |
|
62 | 62 | |
63 | 63 | public function company() |
64 | 64 | { |
@@ -20,8 +20,8 @@ |
||
20 | 20 | */ |
21 | 21 | public function __construct() |
22 | 22 | { |
23 | - config(['auth.model' => \plunner\Company::class]); |
|
24 | - config(['jwt.user' => \plunner\Company::class]); |
|
23 | + config([ 'auth.model' => \plunner\Company::class ]); |
|
24 | + config([ 'jwt.user' => \plunner\Company::class ]); |
|
25 | 25 | $this->middleware('jwt.authandrefresh:mode-cn'); |
26 | 26 | } |
27 | 27 |
@@ -37,19 +37,19 @@ |
||
37 | 37 | /** |
38 | 38 | * @var array |
39 | 39 | */ |
40 | - protected $touches = ['calendar']; |
|
40 | + protected $touches = [ 'calendar' ]; |
|
41 | 41 | |
42 | 42 | /** |
43 | 43 | * @var array |
44 | 44 | */ |
45 | - protected $fillable = ['url', 'username', 'password', 'calendar_name']; |
|
45 | + protected $fillable = [ 'url', 'username', 'password', 'calendar_name' ]; |
|
46 | 46 | |
47 | 47 | /** |
48 | 48 | * The attributes excluded from the model's JSON form. |
49 | 49 | * |
50 | 50 | * @var array |
51 | 51 | */ |
52 | - protected $hidden = ['password']; |
|
52 | + protected $hidden = [ 'password' ]; |
|
53 | 53 | |
54 | 54 | /** |
55 | 55 | * @return \Illuminate\Database\Eloquent\Relations\BelongsTo |
@@ -37,7 +37,7 @@ |
||
37 | 37 | * |
38 | 38 | * @var array |
39 | 39 | */ |
40 | - protected $fillable = ['name', 'enabled']; |
|
40 | + protected $fillable = [ 'name', 'enabled' ]; |
|
41 | 41 | |
42 | 42 | /** |
43 | 43 | * @return \Illuminate\Database\Eloquent\Relations\BelongsTo |
@@ -46,14 +46,14 @@ |
||
46 | 46 | * |
47 | 47 | * @var array |
48 | 48 | */ |
49 | - protected $fillable = ['title', 'description', 'duration']; |
|
49 | + protected $fillable = [ 'title', 'description', 'duration' ]; |
|
50 | 50 | |
51 | 51 | /** |
52 | 52 | * The attributes excluded from the model's JSON form. |
53 | 53 | * |
54 | 54 | * @var array |
55 | 55 | */ |
56 | - protected $hidden = ['pivot']; |
|
56 | + protected $hidden = [ 'pivot' ]; |
|
57 | 57 | |
58 | 58 | |
59 | 59 | /** |
@@ -39,6 +39,6 @@ |
||
39 | 39 | */ |
40 | 40 | public function broadcastOn() |
41 | 41 | { |
42 | - return []; |
|
42 | + return [ ]; |
|
43 | 43 | } |
44 | 44 | } |
@@ -9,8 +9,8 @@ |
||
9 | 9 | namespace plunner\Console\Commands\Optimise; |
10 | 10 | |
11 | 11 | use Illuminate\Console\Scheduling\Schedule; |
12 | -use plunner\company; |
|
13 | 12 | use plunner\Events\Optimise\ErrorEvent; |
13 | +use plunner\company; |
|
14 | 14 | |
15 | 15 | /** |
16 | 16 | * Class Optimise |
@@ -158,11 +158,12 @@ discard block |
||
158 | 158 | $solver = $this->setData($solver); |
159 | 159 | $solver = $solver->solve(); |
160 | 160 | $this->solver = $solver; |
161 | - }catch(OptimiseException $e) { |
|
162 | - if(!$e->isEmpty()) |
|
163 | - \Event::fire(new ErrorEvent($this->company, $e->getMessage())); |
|
161 | + } catch(OptimiseException $e) { |
|
162 | + if(!$e->isEmpty()) { |
|
163 | + \Event::fire(new ErrorEvent($this->company, $e->getMessage())); |
|
164 | + } |
|
164 | 165 | throw $e; |
165 | - }catch (\Exception $e) { |
|
166 | + } catch (\Exception $e) { |
|
166 | 167 | //TODO use the correct exceptions to avoid to share private data |
167 | 168 | \Event::fire(new ErrorEvent($this->company, $e->getMessage())); |
168 | 169 | throw new OptimiseException('Optimising error', 0, $e); |
@@ -207,8 +208,9 @@ discard block |
||
207 | 208 | { |
208 | 209 | //since we consider busy timeslots, we need to get all users |
209 | 210 | $users = $this->company->employees->pluck('id')->toArray(); |
210 | - if(count($users) == 0) |
|
211 | - throw ((new OptimiseException("No users for this company"))->withEmpty(true)); |
|
211 | + if(count($users) == 0) { |
|
212 | + throw ((new OptimiseException("No users for this company"))->withEmpty(true)); |
|
213 | + } |
|
212 | 214 | return $solver->setUsers($users); |
213 | 215 | } |
214 | 216 | |
@@ -223,8 +225,9 @@ discard block |
||
223 | 225 | * @var $meetings \Illuminate\Support\Collection |
224 | 226 | */ |
225 | 227 | $meetings = collect($this->company->getMeetingsTimeSlots($this->startTime, $this->endTime)); |
226 | - if($meetings->count() == 0) |
|
227 | - throw ((new OptimiseException("No meetings for this week"))->withEmpty(true)); |
|
228 | + if($meetings->count() == 0) { |
|
229 | + throw ((new OptimiseException("No meetings for this week"))->withEmpty(true)); |
|
230 | + } |
|
228 | 231 | $timeslots = $meetings->groupBy('id')->map(function ($item) { //convert timeslots |
229 | 232 | return $this->durationConverter($this->timeSlotsConverter($item)); |
230 | 233 | }); |
@@ -298,8 +301,9 @@ discard block |
||
298 | 301 | { |
299 | 302 | $ret = []; |
300 | 303 | foreach ($ids as $id) { |
301 | - if(isset($timeSlots[$id])) |
|
302 | - $ret = self::fillTimeSlots($ret, $id, $timeSlots[$id], $free ? '1' : '0'); |
|
304 | + if(isset($timeSlots[$id])) { |
|
305 | + $ret = self::fillTimeSlots($ret, $id, $timeSlots[$id], $free ? '1' : '0'); |
|
306 | + } |
|
303 | 307 | $ret = self::fillRow($ret, $id, $timeslotsN, $free ? '0' : '1'); |
304 | 308 | } |
305 | 309 | |
@@ -316,8 +320,9 @@ discard block |
||
316 | 320 | static private function fillTimeSlots(array $array, $id, \Illuminate\Support\Collection $timeSlots, $fill = '0') |
317 | 321 | { |
318 | 322 | foreach ($timeSlots as $timeSlot) { |
319 | - if (!isset($array[$id])) |
|
320 | - $array[$id] = []; |
|
323 | + if (!isset($array[$id])) { |
|
324 | + $array[$id] = []; |
|
325 | + } |
|
321 | 326 | $array[$id] = self::arrayPadInterval($array[$id], $timeSlot->time_start, $timeSlot->time_end, $fill); |
322 | 327 | } |
323 | 328 | return $array; |
@@ -332,8 +337,9 @@ discard block |
||
332 | 337 | */ |
333 | 338 | static private function arrayPadInterval(array $array, $from, $to, $pad = '0') |
334 | 339 | { |
335 | - for ($i = $from; $i < $to; $i++) |
|
336 | - $array[$i] = $pad; |
|
340 | + for ($i = $from; $i < $to; $i++) { |
|
341 | + $array[$i] = $pad; |
|
342 | + } |
|
337 | 343 | return $array; |
338 | 344 | } |
339 | 345 | |
@@ -346,8 +352,9 @@ discard block |
||
346 | 352 | static private function fillRow(array $array, $id, $until, $fill = '0') |
347 | 353 | { |
348 | 354 | for ($i = 1; $i <= $until; $i++) { |
349 | - if (!isset($array[$id][$i])) |
|
350 | - $array[$id][$i] = $fill; |
|
355 | + if (!isset($array[$id][$i])) { |
|
356 | + $array[$id][$i] = $fill; |
|
357 | + } |
|
351 | 358 | } |
352 | 359 | |
353 | 360 | return $array; |
@@ -386,8 +393,9 @@ discard block |
||
386 | 393 | * @var $usersMeetings \Illuminate\Support\Collection |
387 | 394 | */ |
388 | 395 | $usersMeetings = collect($this->company->getUsersMeetings($users, $meetings))->groupBy('employee_id'); |
389 | - if($usersMeetings->count() == 0) |
|
390 | - throw ((new OptimiseException("No users for any meeting"))->withEmpty(true)); |
|
396 | + if($usersMeetings->count() == 0) { |
|
397 | + throw ((new OptimiseException("No users for any meeting"))->withEmpty(true)); |
|
398 | + } |
|
391 | 399 | |
392 | 400 | return $solver->setUsersMeetings(self::getUsersMeetingsArray($users, $meetings, $usersMeetings)); |
393 | 401 | } |
@@ -464,8 +472,10 @@ discard block |
||
464 | 472 | { |
465 | 473 | $ret = clone $this->startTime; |
466 | 474 | //TODO check, because the meetings cannot have this date available -> this to avoid errors if we don't have a date for a meeting |
467 | - if ($timeslot <= 1) //false == 0 |
|
475 | + if ($timeslot <= 1) { |
|
476 | + //false == 0 |
|
468 | 477 | return $ret; |
478 | + } |
|
469 | 479 | return $ret->add(new \DateInterval('PT' . (($timeslot - 1) * config('app.timeslots.duration')) . 'S')); |
470 | 480 | } |
471 | 481 |
@@ -291,11 +291,11 @@ discard block |
||
291 | 291 | |
292 | 292 | /** |
293 | 293 | * @param \Illuminate\Support\Collection $timeSlots |
294 | - * @param bool|true $free if true the array is filled with 1 for timeslots values else with 0 for timeslots values |
|
295 | - * @param array $ids array of ids that we consider, if they are not present inside timeSlots we fill the entire row |
|
294 | + * @param boolean $free if true the array is filled with 1 for timeslots values else with 0 for timeslots values |
|
295 | + * @param string[] $ids array of ids that we consider, if they are not present inside timeSlots we fill the entire row |
|
296 | 296 | * with the default value |
297 | 297 | * @param int $timeSlotsN number of timeslots |
298 | - * @return array |
|
298 | + * @return string[] |
|
299 | 299 | */ |
300 | 300 | static private function getAvailabilityArray(\Illuminate\Support\Collection $timeSlots, $timeSlotsN, array $ids, $free = true) |
301 | 301 | { |
@@ -344,6 +344,7 @@ discard block |
||
344 | 344 | * @param array $array |
345 | 345 | * @param int $id |
346 | 346 | * @param string $fill |
347 | + * @param integer $until |
|
347 | 348 | * @return array |
348 | 349 | */ |
349 | 350 | static private function fillRow(array $array, $id, $until, $fill = '0') |
@@ -396,10 +397,10 @@ discard block |
||
396 | 397 | } |
397 | 398 | |
398 | 399 | /** |
399 | - * @param array $users |
|
400 | - * @param array $meetings |
|
400 | + * @param string[] $users |
|
401 | + * @param string[] $meetings |
|
401 | 402 | * @param \Illuminate\Support\Collection $usersMeetings |
402 | - * @return array |
|
403 | + * @return string[] |
|
403 | 404 | */ |
404 | 405 | static private function getUsersMeetingsArray($users, $meetings, \Illuminate\Support\Collection $usersMeetings) |
405 | 406 | { |
@@ -85,8 +85,8 @@ discard block |
||
85 | 85 | { |
86 | 86 | $this->startTime = clone $startTime; |
87 | 87 | $this->endTime = clone $this->startTime; |
88 | - $this->endTime->add(new \DateInterval('PT' . ($this->time_slots * |
|
89 | - config('app.timeslots.duration')) . 'S')); |
|
88 | + $this->endTime->add(new \DateInterval('PT'.($this->time_slots * |
|
89 | + config('app.timeslots.duration')).'S')); |
|
90 | 90 | } |
91 | 91 | |
92 | 92 | /** |
@@ -158,11 +158,11 @@ discard block |
||
158 | 158 | $solver = $this->setData($solver); |
159 | 159 | $solver = $solver->solve(); |
160 | 160 | $this->solver = $solver; |
161 | - }catch(OptimiseException $e) { |
|
162 | - if(!$e->isEmpty()) |
|
161 | + } catch (OptimiseException $e) { |
|
162 | + if (!$e->isEmpty()) |
|
163 | 163 | \Event::fire(new ErrorEvent($this->company, $e->getMessage())); |
164 | 164 | throw $e; |
165 | - }catch (\Exception $e) { |
|
165 | + } catch (\Exception $e) { |
|
166 | 166 | //TODO use the correct exceptions to avoid to share private data |
167 | 167 | \Event::fire(new ErrorEvent($this->company, $e->getMessage())); |
168 | 168 | throw new OptimiseException('Optimising error', 0, $e); |
@@ -207,7 +207,7 @@ discard block |
||
207 | 207 | { |
208 | 208 | //since we consider busy timeslots, we need to get all users |
209 | 209 | $users = $this->company->employees->pluck('id')->toArray(); |
210 | - if(count($users) == 0) |
|
210 | + if (count($users) == 0) |
|
211 | 211 | throw ((new OptimiseException("No users for this company"))->withEmpty(true)); |
212 | 212 | return $solver->setUsers($users); |
213 | 213 | } |
@@ -223,9 +223,9 @@ discard block |
||
223 | 223 | * @var $meetings \Illuminate\Support\Collection |
224 | 224 | */ |
225 | 225 | $meetings = collect($this->company->getMeetingsTimeSlots($this->startTime, $this->endTime)); |
226 | - if($meetings->count() == 0) |
|
226 | + if ($meetings->count() == 0) |
|
227 | 227 | throw ((new OptimiseException("No meetings for this week"))->withEmpty(true)); |
228 | - $timeslots = $meetings->groupBy('id')->map(function ($item) { //convert timeslots |
|
228 | + $timeslots = $meetings->groupBy('id')->map(function($item) { //convert timeslots |
|
229 | 229 | return $this->durationConverter($this->timeSlotsConverter($item)); |
230 | 230 | }); |
231 | 231 | return $solver->setMeetings($timeslots->keys()->toArray()) |
@@ -240,8 +240,8 @@ discard block |
||
240 | 240 | */ |
241 | 241 | private function durationConverter($item) |
242 | 242 | { |
243 | - return $item->each(function ($item2) { |
|
244 | - $item2->duration = $this->convertDuration((int)$item2->duration); |
|
243 | + return $item->each(function($item2) { |
|
244 | + $item2->duration = $this->convertDuration((int) $item2->duration); |
|
245 | 245 | return $item2; |
246 | 246 | //TODO try catch |
247 | 247 | }); |
@@ -253,7 +253,7 @@ discard block |
||
253 | 253 | */ |
254 | 254 | static private function convertDuration($duration) |
255 | 255 | { |
256 | - return (int)ceil($duration / config('app.timeslots.duration')); |
|
256 | + return (int) ceil($duration / config('app.timeslots.duration')); |
|
257 | 257 | } |
258 | 258 | |
259 | 259 | /** |
@@ -262,7 +262,7 @@ discard block |
||
262 | 262 | */ |
263 | 263 | private function timeSlotsConverter($item) |
264 | 264 | { |
265 | - return $item->each(function ($item2) { |
|
265 | + return $item->each(function($item2) { |
|
266 | 266 | $item2->time_start = $this->toTimeSlot($item2->time_start); |
267 | 267 | $item2->time_end = $this->toTimeSlot($item2->time_end); |
268 | 268 | return $item2; |
@@ -280,13 +280,13 @@ discard block |
||
280 | 280 | $dateTime = new \DateTime($time); |
281 | 281 | $diff = $dateTime->diff($this->startTime); |
282 | 282 | $diff = explode(':', $diff->format('%R:%d:%h:%i:%s')); |
283 | - $diff = $diff[1] * 86400 + $diff[2] * 3600 + $diff[3] * 60 + $diff[4]; |
|
283 | + $diff = $diff[ 1 ] * 86400 + $diff[ 2 ] * 3600 + $diff[ 3 ] * 60 + $diff[ 4 ]; |
|
284 | 284 | //if($diff[0] != '-' && $diff != 0) |
285 | 285 | // throw new OptimiseException('timeslot time <= startTime'); |
286 | 286 | //TODO fix check |
287 | 287 | //TODO check if diff makes sense |
288 | 288 | //TODO check upper limit |
289 | - return (int)(round($diff / config('app.timeslots.duration')) + 1); //TODO can round cause overlaps? |
|
289 | + return (int) (round($diff / config('app.timeslots.duration')) + 1); //TODO can round cause overlaps? |
|
290 | 290 | } |
291 | 291 | |
292 | 292 | /** |
@@ -299,10 +299,10 @@ discard block |
||
299 | 299 | */ |
300 | 300 | static private function getAvailabilityArray(\Illuminate\Support\Collection $timeSlots, $timeSlotsN, array $ids, $free = true) |
301 | 301 | { |
302 | - $ret = []; |
|
302 | + $ret = [ ]; |
|
303 | 303 | foreach ($ids as $id) { |
304 | - if(isset($timeSlots[$id])) |
|
305 | - $ret = self::fillTimeSlots($ret, $id, $timeSlots[$id], $free ? '1' : '0'); |
|
304 | + if (isset($timeSlots[ $id ])) |
|
305 | + $ret = self::fillTimeSlots($ret, $id, $timeSlots[ $id ], $free ? '1' : '0'); |
|
306 | 306 | $ret = self::fillRow($ret, $id, $timeSlotsN, $free ? '0' : '1'); |
307 | 307 | } |
308 | 308 | |
@@ -319,9 +319,9 @@ discard block |
||
319 | 319 | static private function fillTimeSlots(array $array, $id, \Illuminate\Support\Collection $timeSlots, $fill = '0') |
320 | 320 | { |
321 | 321 | foreach ($timeSlots as $timeSlot) { |
322 | - if (!isset($array[$id])) |
|
323 | - $array[$id] = []; |
|
324 | - $array[$id] = self::arrayPadInterval($array[$id], $timeSlot->time_start, $timeSlot->time_end, $fill); |
|
322 | + if (!isset($array[ $id ])) |
|
323 | + $array[ $id ] = [ ]; |
|
324 | + $array[ $id ] = self::arrayPadInterval($array[ $id ], $timeSlot->time_start, $timeSlot->time_end, $fill); |
|
325 | 325 | } |
326 | 326 | return $array; |
327 | 327 | } |
@@ -336,7 +336,7 @@ discard block |
||
336 | 336 | static private function arrayPadInterval(array $array, $from, $to, $pad = '0') |
337 | 337 | { |
338 | 338 | for ($i = $from; $i < $to; $i++) |
339 | - $array[$i] = $pad; |
|
339 | + $array[ $i ] = $pad; |
|
340 | 340 | return $array; |
341 | 341 | } |
342 | 342 | |
@@ -349,8 +349,8 @@ discard block |
||
349 | 349 | static private function fillRow(array $array, $id, $until, $fill = '0') |
350 | 350 | { |
351 | 351 | for ($i = 1; $i <= $until; $i++) { |
352 | - if (!isset($array[$id][$i])) |
|
353 | - $array[$id][$i] = $fill; |
|
352 | + if (!isset($array[ $id ][ $i ])) |
|
353 | + $array[ $id ][ $i ] = $fill; |
|
354 | 354 | } |
355 | 355 | |
356 | 356 | return $array; |
@@ -369,7 +369,7 @@ discard block |
||
369 | 369 | $users = collect($this->company->getEmployeesTimeSlots($this->startTime, $this->endTime)); |
370 | 370 | //if($users->count() == 0) |
371 | 371 | // throw ((new OptimiseException("No users for this company"))->withEmpty(true)); |
372 | - $timeslots = $users->groupBy('id')->map(function ($item) { //convert timeslots |
|
372 | + $timeslots = $users->groupBy('id')->map(function($item) { //convert timeslots |
|
373 | 373 | return $this->timeSlotsConverter($item); |
374 | 374 | }); |
375 | 375 | return $solver->setUsersAvailability(self::getAvailabilityArray($timeslots, $this->time_slots, $solver->getUsers(), |
@@ -389,7 +389,7 @@ discard block |
||
389 | 389 | * @var $usersMeetings \Illuminate\Support\Collection |
390 | 390 | */ |
391 | 391 | $usersMeetings = collect($this->company->getUsersMeetings($users, $meetings))->groupBy('employee_id'); |
392 | - if($usersMeetings->count() == 0) |
|
392 | + if ($usersMeetings->count() == 0) |
|
393 | 393 | throw ((new OptimiseException("No users for any meeting"))->withEmpty(true)); |
394 | 394 | |
395 | 395 | return $solver->setUsersMeetings(self::getUsersMeetingsArray($users, $meetings, $usersMeetings)); |
@@ -403,14 +403,14 @@ discard block |
||
403 | 403 | */ |
404 | 404 | static private function getUsersMeetingsArray($users, $meetings, \Illuminate\Support\Collection $usersMeetings) |
405 | 405 | { |
406 | - $ret = []; |
|
406 | + $ret = [ ]; |
|
407 | 407 | foreach ($users as $user) { |
408 | 408 | $usersMeetingsTmp = $usersMeetings->get($user); |
409 | 409 | foreach ($meetings as $meeting) { |
410 | 410 | if ($usersMeetingsTmp != null && $usersMeetingsTmp->contains('meeting_id', $meeting)) { |
411 | - $ret[$user][$meeting] = 1; |
|
411 | + $ret[ $user ][ $meeting ] = 1; |
|
412 | 412 | } else { |
413 | - $ret[$user][$meeting] = 0; |
|
413 | + $ret[ $user ][ $meeting ] = 0; |
|
414 | 414 | } |
415 | 415 | } |
416 | 416 | } |
@@ -453,7 +453,7 @@ discard block |
||
453 | 453 | { |
454 | 454 | $meetings = $solver->getYResults(); |
455 | 455 | foreach ($meetings as $id => $meeting) { |
456 | - $meetingO = \plunner\Meeting::findOrFail($id);//TODO catch error |
|
456 | + $meetingO = \plunner\Meeting::findOrFail($id); //TODO catch error |
|
457 | 457 | $meetingO->start_time = $this->toDateTime(array_search('1', $meeting)); |
458 | 458 | $meetingO->save(); |
459 | 459 | } |
@@ -469,7 +469,7 @@ discard block |
||
469 | 469 | //TODO check, because the meetings cannot have this date available -> this to avoid errors if we don't have a date for a meeting |
470 | 470 | if ($timeslot <= 1) //false == 0 |
471 | 471 | return $ret; |
472 | - return $ret->add(new \DateInterval('PT' . (($timeslot - 1) * config('app.timeslots.duration')) . 'S')); |
|
472 | + return $ret->add(new \DateInterval('PT'.(($timeslot - 1) * config('app.timeslots.duration')).'S')); |
|
473 | 473 | } |
474 | 474 | |
475 | 475 | /** |
@@ -481,7 +481,7 @@ discard block |
||
481 | 481 | foreach ($employeesMeetings as $eId => $employeeMeetings) { |
482 | 482 | $employee = \plunner\Employee::findOrFail($eId); |
483 | 483 | $employeeMeetings = collect($employeeMeetings); |
484 | - $employeeMeetings = $employeeMeetings->filter(function ($item) { |
|
484 | + $employeeMeetings = $employeeMeetings->filter(function($item) { |
|
485 | 485 | return $item == 1; |
486 | 486 | }); |
487 | 487 | $employee->meetings()->attach($employeeMeetings->keys()->toArray()); |
@@ -39,6 +39,6 @@ |
||
39 | 39 | */ |
40 | 40 | public function broadcastOn() |
41 | 41 | { |
42 | - return []; |
|
42 | + return [ ]; |
|
43 | 43 | } |
44 | 44 | } |