@@ -77,7 +77,7 @@ |
||
77 | 77 | public function zSetExists($key, $identity): bool |
78 | 78 | { |
79 | 79 | $score = $this->redis->zScore($key, $identity); |
80 | - return (!is_null($score) && $score!==false); |
|
80 | + return (!is_null($score) && $score !== false); |
|
81 | 81 | } |
82 | 82 | |
83 | 83 | public function moveFromZSetToList($listKey, $zSetKey, $item) |
@@ -22,6 +22,6 @@ |
||
22 | 22 | */ |
23 | 23 | public function resolve($queue) |
24 | 24 | { |
25 | - throw new Exception('Queue '.$queue->getName().' is empty'); |
|
25 | + throw new Exception('Queue ' . $queue->getName() . ' is empty'); |
|
26 | 26 | } |
27 | 27 | } |