Test Setup Failed
Push — master ( 83a66e...a4d80b )
by Nicolas
10:58
created
src/Consumers/Retry.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
             'retry_key_pattern' => sprintf(self::RETRY_ROUTING_KEY_PATTERN, $queue),
52 52
         ];
53 53
 
54
-        if(! empty($this->retries))
54
+        if( ! empty($this->retries))
55 55
         {
56 56
             $options['retry_attempts'] = $this->retries;
57 57
         }
Please login to merge, or discard this patch.
src/ValueObjects/Uuid.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Puzzle\AMQP\ValueObjects;
6 6
 
Please login to merge, or discard this patch.
features/bootstrap/SendContext.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -129,7 +129,7 @@
 block discarded – undo
129 129
         $message = $this->httpClient->getMessages($this->vhost, $queueName, $firstMessageOptions)[0];
130 130
 
131 131
         \PHPUnit\Framework\Assert::assertSame($routingKey, $message['routing_key']);
132
-        \PHPUnit\Framework\Assert::assertSame($contentType,  $message['properties']['content_type']);
132
+        \PHPUnit\Framework\Assert::assertSame($contentType, $message['properties']['content_type']);
133 133
 
134 134
         if($content !== false)
135 135
         {
Please login to merge, or discard this patch.
src/Workers/WorkerProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Puzzle\AMQP\Workers;
6 6
 
Please login to merge, or discard this patch.