Completed
Pull Request — master (#5)
by Adam
02:20
created
src/Worker.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
     {
70 70
         $packet = $this->driver->pop($queue);
71 71
         if (empty($packet)) {
72
-             return true;
72
+                return true;
73 73
         }
74 74
 
75 75
         $message = $this->serializer->deserialize($packet);
Please login to merge, or discard this patch.
src/Event.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
     public function finish(Message $message)
48 48
     {
49 49
         array_map(function ($name) use ($message) {
50
-           $this->emitter->emit($name, $message) ;
50
+            $this->emitter->emit($name, $message) ;
51 51
         }, [
52 52
             static::MESSAGE_FINISH,
53 53
             sprintf('%s.%s', static::MESSAGE_FINISH, $message->handler())
Please login to merge, or discard this patch.