Completed
Push — master ( 31f802...aa16fd )
by Tomas
18:43 queued 03:05
created
src/Emitter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
 
45 45
         $this->log(
46 46
             LogLevel::INFO,
47
-            "Dispatcher send message #{$message->getId()} to driver " . get_class($this->driver),
47
+            "Dispatcher send message #{$message->getId()} to driver ".get_class($this->driver),
48 48
             $this->messageLoggerContext($message)
49 49
         );
50 50
         return $this;
Please login to merge, or discard this patch.
src/Driver/LazyRabbitMqDriver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
                 true,
70 70
                 false,
71 71
                 false,
72
-                function ($rabbitMessage) use ($callback) {
72
+                function($rabbitMessage) use ($callback) {
73 73
                     $message = $this->serializer->unserialize($rabbitMessage->body);
74 74
                     $callback($message);
75 75
                 }
Please login to merge, or discard this patch.
src/Dispatcher.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
 
65 65
         $this->log(
66 66
             LogLevel::INFO,
67
-            "Dispatcher send message #{$message->getId()} with priority {$priority} to driver " . get_class($this->driver),
67
+            "Dispatcher send message #{$message->getId()} with priority {$priority} to driver ".get_class($this->driver),
68 68
             $this->messageLoggerContext($message)
69 69
         );
70 70
         return $this;
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
     public function handle(array $priorities = []): void
85 85
     {
86 86
         try {
87
-            $this->driver->wait(function (MessageInterface $message, int $priority = Dispatcher::DEFAULT_PRIORITY): bool {
87
+            $this->driver->wait(function(MessageInterface $message, int $priority = Dispatcher::DEFAULT_PRIORITY): bool {
88 88
                 $this->log(
89 89
                     LogLevel::INFO,
90 90
                     "Start handle message #{$message->getId()} ({$message->getType()}) priority:{$priority}",
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
         } catch (Exception $e) {
163 163
             $this->log(
164 164
                 LogLevel::ERROR,
165
-                "Handler " . get_class($handler) . " throws exception - {$e->getMessage()}",
165
+                "Handler ".get_class($handler)." throws exception - {$e->getMessage()}",
166 166
                 ['error' => $e, 'message' => $this->messageLoggerContext($message), 'exception' => $e]
167 167
             );
168 168
             if (Debugger::isEnabled()) {
Please login to merge, or discard this patch.