Passed
Push — master ( c9ca10...2ba15e )
by Insolita
01:32
created
src/Storage/PhpRedisStorage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@
 block discarded – undo
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)
Please login to merge, or discard this patch.
src/Behaviors/OnEmptyQueueException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,6 +22,6 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.