Skip to content

Commit 5bd04bf

Browse files
committed
Apply fixes from StyleCI
1 parent e3ed54b commit 5bd04bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Illuminate/Queue/Worker.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -400,9 +400,9 @@ protected function getNextJob($connection, $queue)
400400
*/
401401
protected function queuePaused($connectionName, $queue)
402402
{
403-
return $this->cache && (bool) ($this->cache->get(
403+
return $this->cache && (bool) $this->cache->get(
404404
"illuminate:queue:paused:{$connectionName}:{$queue}", false
405-
));
405+
);
406406
}
407407

408408
/**

0 commit comments

Comments
 (0)