Completed
Push — master ( e9401f...2161bf )
by Daniel
03:27
created
DependencyInjection/CmobiRabbitmqExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 
18 18
     public function load(array $configs, ContainerBuilder $container)
19 19
     {
20
-        $fileLocator = new FileLocator(__DIR__ . '/../Resources/config');
20
+        $fileLocator = new FileLocator(__DIR__.'/../Resources/config');
21 21
         $loader = new YamlFileLoader($container, $fileLocator);
22 22
         $loader->load('rabbitmq.yml');
23 23
 
Please login to merge, or discard this patch.
Transport/Worker/WorkerQueueCallback.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
      */
29 29
     public function toClosure()
30 30
     {
31
-        return function (AMQPMessage $message) {
31
+        return function(AMQPMessage $message) {
32 32
             $this->getQueueService()->handle($message);
33 33
 
34 34
             $message->delivery_info['channel']->basic_ack($message->delivery_info['delivery_tag']);
Please login to merge, or discard this patch.
Connection/ConnectionFactory.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -62,10 +62,10 @@
 block discarded – undo
62 62
             $this->parameters['user'],
63 63
             $this->parameters['password'],
64 64
             $this->parameters['vhost'],
65
-            false,      // insist
65
+            false, // insist
66 66
             'AMQPLAIN', // login_method
67
-            null,       // login_response
68
-            'en_US',    // locale
67
+            null, // login_response
68
+            'en_US', // locale
69 69
             $this->parameters['connection_timeout'],
70 70
             $this->parameters['read_write_timeout'],
71 71
             $this->parameters['ssl_context'],
Please login to merge, or discard this patch.
Transport/Rpc/RpcQueueCallback.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,11 +29,11 @@
 block discarded – undo
29 29
      */
30 30
     public function toClosure()
31 31
     {
32
-        return function (AMQPMessage $message) {
32
+        return function(AMQPMessage $message) {
33 33
             $response = $this->getQueueService()->handle($message);
34 34
 
35 35
             $amqpResponse = new CmobiAMQPMessage(
36
-                (string) $response,
36
+                (string)$response,
37 37
                 ['correlation_id' => $message->get('correlation_id')]
38 38
             );
39 39
 
Please login to merge, or discard this patch.
Transport/Worker/Task.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
         $queueBag = new WorkerQueueBag($this->getQueueName());
34 34
         $this->getChannel()->queueDeclare($queueBag->getQueueDeclare());
35 35
         $msg = new CmobiAMQPMessage(
36
-            (string) $data,
36
+            (string)$data,
37 37
             [
38 38
                 'delivery_mode' => 2, // make message persistent
39 39
                 'priority' => $priority,
Please login to merge, or discard this patch.
Tests/Queue/QueueTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
             ->disableOriginalConstructor()
77 77
             ->getMock();
78 78
         $callbackMock->method('toClosure')
79
-            ->willReturn(function () {});
79
+            ->willReturn(function() {});
80 80
 
81 81
         return $callbackMock;
82 82
     }
Please login to merge, or discard this patch.
Transport/Rpc/RpcClient.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
         $queueBag = new WorkerQueueBag($this->getQueueName());
34 34
         $this->getChannel()->queueDeclare($queueBag->getQueueDeclare());
35 35
         $msg = new CmobiAMQPMessage(
36
-            (string) $data,
36
+            (string)$data,
37 37
             [
38 38
                 'delivery_mode' => 2, // make message persistent
39 39
                 'priority' => $priority,
Please login to merge, or discard this patch.
Transport/Rpc/RpcServerBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
      */
31 31
     public function buildQueue($queueName, QueueServiceInterface $queueService, QueueBagInterface $queueBag)
32 32
     {
33
-        if (! $queueBag instanceof RpcQueueBag) {
33
+        if (!$queueBag instanceof RpcQueueBag) {
34 34
             throw new \Exception('Unsupported QueueBag');
35 35
         }
36 36
         $queue = new Queue($this->getConnectionManager(), $queueBag, $this->logger);
Please login to merge, or discard this patch.
Transport/Worker/WorkerBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
      */
32 32
     public function buildQueue($queueName, QueueServiceInterface $queueService, QueueBagInterface $queueBag)
33 33
     {
34
-        if (! $queueBag instanceof WorkerQueueBag) {
34
+        if (!$queueBag instanceof WorkerQueueBag) {
35 35
             throw new \Exception('Unsupported QueueBag');
36 36
         }
37 37
         $queue = new Queue($this->getConnectionManager(), $queueBag, $this->logger);
Please login to merge, or discard this patch.