Test Failed
Pull Request — master (#29)
by Nicolas
02:57
created
src/Workers/ReadableMessageModifier.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
     {
20 20
         $this->originalMessage = $originalMessage;
21 21
         
22
-        $this->newRoutingKey= $originalMessage->getRoutingKey();
22
+        $this->newRoutingKey = $originalMessage->getRoutingKey();
23 23
         $this->newBody = null;
24 24
         
25 25
         $this->newAttributeValues = [];
Please login to merge, or discard this patch.
src/Messages/Processors/GZip.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
      */
41 41
     public function setCompressionLevel($compressionLevel = -1)
42 42
     {
43
-        if(! $this->isCompressionLevelValid($compressionLevel))
43
+        if( ! $this->isCompressionLevelValid($compressionLevel))
44 44
         {
45 45
             $this->logWarning(sprintf(
46 46
                 "Invalid compression level (%s)",
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
     
72 72
     public function setEncodingMode($mode)
73 73
     {
74
-        if(! is_scalar($mode) || ! in_array($mode, [FORCE_GZIP, FORCE_DEFLATE]))
74
+        if( ! is_scalar($mode) || ! in_array($mode, [FORCE_GZIP, FORCE_DEFLATE]))
75 75
         {
76 76
             $this->logWarning(sprintf(
77 77
                 "Invalid encoding mode (%s)",
Please login to merge, or discard this patch.