Test Failed
Pull Request — master (#39)
by Aleksandr
06:37
created
EventListener/PcntlSignalDispatchSubscriber.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
 
22 22
     public function __construct(Consumer $consumer)
23 23
     {
24
-        $stopConsumer = function () use ($consumer) {
24
+        $stopConsumer = function() use ($consumer) {
25 25
             // Process current message, then halt consumer
26 26
             $consumer->forceStopConsumer();
27 27
             // Halt consumer if waiting for a new message from the queue
Please login to merge, or discard this patch.
RabbitMq/AMQPConnectionFactory.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
     {
32 32
         $parameters = $this->parseUrl(array_merge($this->defaultParameters, $parameters));
33 33
         if (is_array($parameters['ssl_context'])) {
34
-            $parameters['ssl_context'] = ! empty($parameters['ssl_context'])
34
+            $parameters['ssl_context'] = !empty($parameters['ssl_context'])
35 35
                 ? stream_context_create(array('ssl' => $parameters['ssl_context']))
36 36
                 : null;
37 37
         }
@@ -46,10 +46,10 @@  discard block
 block discarded – undo
46 46
             $parameters['user'],
47 47
             $parameters['password'],
48 48
             $parameters['vhost'],
49
-            false,      // insist
49
+            false, // insist
50 50
             'AMQPLAIN', // login_method
51
-            null,       // login_response
52
-            'en_US',    // locale
51
+            null, // login_response
52
+            'en_US', // locale
53 53
         ];
54 54
 
55 55
         $isSocketConnection = $class == \PhpAmqpLib\Connection\AMQPSocketConnection::class || is_subclass_of($class, \PhpAmqpLib\Connection\AMQPSocketConnection::class);
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
             $parameters['host'] = urldecode($url['host']);
94 94
         }
95 95
         if (isset($url['port'])) {
96
-            $parameters['port'] = (int)$url['port'];
96
+            $parameters['port'] = (int) $url['port'];
97 97
         }
98 98
         if (isset($url['user'])) {
99 99
             $parameters['user'] = urldecode($url['user']);
Please login to merge, or discard this patch.
RabbitMq/RpcClient.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -124,7 +124,7 @@
 block discarded – undo
124 124
         }
125 125
 
126 126
         $replices = [];
127
-        foreach($this->messages as $message) {
127
+        foreach ($this->messages as $message) {
128 128
             /** @var AMQPMessage $message */
129 129
             if (!$message->has('correlation_id')) {
130 130
                 $this->logger->error('unexpected message. rpc replies have no correlation_id ');
Please login to merge, or discard this patch.
Serializer/JsonMessageBodySerializer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
                 'message' => $body->getMessage(),
34 34
             ]);
35 35
         }
36
-        return json_encode($body);// $this->serializer->serialize($body, 'json');
36
+        return json_encode($body); // $this->serializer->serialize($body, 'json');
37 37
     }
38 38
 
39 39
     public function deserialize(string $body)
Please login to merge, or discard this patch.
Command/ConsumerCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@
 block discarded – undo
113 113
             new ConsoleLogger($output)
114 114
         );
115 115
         $declarationRegistry = $this->container->get('old_sound_rabbit_mq.declaration_registry');
116
-        foreach($consumer->getQueueConsumings() as $queueConsuming) {
116
+        foreach ($consumer->getQueueConsumings() as $queueConsuming) {
117 117
             $declarator->declareForQueueDeclaration($queueConsuming->queueName, $declarationRegistry);
118 118
         }
119 119
     }
Please login to merge, or discard this patch.
Command/DeclareCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
 
43 43
         $connection = $input->getArgument('connection');
44 44
         $channelAlias = sprintf('old_sound_rabbit_mq.channel.%s', $connection);
45
-        if(!$this->container->has($channelAlias)) {
45
+        if (!$this->container->has($channelAlias)) {
46 46
             throw new InvalidOptionException('Connection is not exist');
47 47
         };
48 48
 
Please login to merge, or discard this patch.
Declarations/DeclarationsRegistry.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
      */
36 36
     public function getBindingsByExchange(ExchangeDeclaration $exchange): array
37 37
     {
38
-        return array_filter($this->bindings, function ($binding) use ($exchange) {
38
+        return array_filter($this->bindings, function($binding) use ($exchange) {
39 39
             return $binding->exchange === $exchange->name || ($binding->destinationIsExchange && $binding->destination === $exchange->name);
40 40
         });
41 41
     }
Please login to merge, or discard this patch.
Declarations/QueueDeclaration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
      */
39 39
     public function declure() {
40 40
         foreach ($this->queues as $name => $options) {
41
-            list($queueName, ,) = $this->getChannel()->queue_declare($name, $options['passive'],
41
+            list($queueName,,) = $this->getChannel()->queue_declare($name, $options['passive'],
42 42
                 $options['durable'], $options['exclusive'],
43 43
                 $options['auto_delete'], $options['nowait'],
44 44
                 $options['arguments'], $options['ticket']);
Please login to merge, or discard this patch.
Declarations/ConsumerFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
         $consumer = new Consumer($consumerDef->name);
27 27
         $consumer->setChannel($connection->channel());
28 28
 
29
-        foreach([] as $d) {
29
+        foreach ([] as $d) {
30 30
             $consumer->consumeQueue();
31 31
         }
32 32
 
Please login to merge, or discard this patch.