Test Failed
Push — master ( 6534f6...69d308 )
by Claude
15:46 queued 12s
created
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.
src/Messages/InMemory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public static function build($routingKey, Body $body = null, array $additionalHeaders = [], array $additionalAttributes = [])
14 14
     {
15
-        if(! $body instanceof Body)
15
+        if( ! $body instanceof Body)
16 16
         {
17 17
             $body = new EmptyBody();
18 18
         }
Please login to merge, or discard this patch.