Completed
Push — master ( 8f4a2a...31bba0 )
by frey
20:39 queued 14:21
created
src/Queue/Driver/Message.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -38,12 +38,12 @@
 block discarded – undo
38 38
     public function __toString()
39 39
     {
40 40
         $info = ['msgBody'               => $this->msgBody,
41
-                      'msgId'            => $this->msgId,
42
-                      'enqueueTime'      => date('Y-m-d H:i:s', $this->enqueueTime),
43
-                      'nextVisibleTime'  => date('Y-m-d H:i:s', $this->nextVisibleTime),
44
-                      'firstDequeueTime' => date('Y-m-d H:i:s', $this->firstDequeueTime),
45
-                      'dequeueCount'     => $this->dequeueCount,
46
-                      'receiptHandle'    => $this->receiptHandle, ];
41
+                        'msgId'            => $this->msgId,
42
+                        'enqueueTime'      => date('Y-m-d H:i:s', $this->enqueueTime),
43
+                        'nextVisibleTime'  => date('Y-m-d H:i:s', $this->nextVisibleTime),
44
+                        'firstDequeueTime' => date('Y-m-d H:i:s', $this->firstDequeueTime),
45
+                        'dequeueCount'     => $this->dequeueCount,
46
+                        'receiptHandle'    => $this->receiptHandle, ];
47 47
 
48 48
         return json_encode($info);
49 49
     }
Please login to merge, or discard this patch.
src/Queue/Driver/Account.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
         }
130 130
 
131 131
         return ['totalCount'      => $ret_pkg['totalCount'],
132
-                     'queueList'  => $ret_pkg['queueList'], 'next_offset' => $next_offset, ];
132
+                        'queueList'  => $ret_pkg['queueList'], 'next_offset' => $next_offset, ];
133 133
     }
134 134
 
135 135
     /* 列出Account的主题
@@ -171,8 +171,8 @@  discard block
 block discarded – undo
171 171
         }
172 172
 
173 173
         return ['totalCoult'       => $resp['totalCount'],
174
-                     'topicList'   => $resp['topicList'],
175
-                     'next_offset' => $next_offset, ];
174
+                        'topicList'   => $resp['topicList'],
175
+                        'next_offset' => $next_offset, ];
176 176
     }
177 177
 
178 178
     /* 获取Account的一个Topic对象
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
         if ($offset == '') {
123 123
             $next_offset = count($ret_pkg['queueList']);
124 124
         } else {
125
-            $next_offset = (int) $offset + count($ret_pkg['queueList']);
125
+            $next_offset = (int)$offset + count($ret_pkg['queueList']);
126 126
         }
127 127
         if ($next_offset >= $ret_pkg['totalCount']) {
128 128
             $next_offset = '';
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
         if ($offset == '') {
165 165
             $next_offset = count($resp['topicList']);
166 166
         } else {
167
-            $next_offset = (int) $offset + count($resp['topicList']);
167
+            $next_offset = (int)$offset + count($resp['topicList']);
168 168
         }
169 169
         if ($next_offset >= $resp['totalCount']) {
170 170
             $next_offset = '';
Please login to merge, or discard this patch.
src/Queue/Driver/CMQClient.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
         } elseif (strpos($host, 'https://') === 0) {
31 31
             $_host = substr($host, 8, strlen($host) - 8);
32 32
         } else {
33
-            throw new CMQClientParameterException('Only support http(s) prototol. Invalid endpoint:'.$host);
33
+            throw new CMQClientParameterException('Only support http(s) prototol. Invalid endpoint:' . $host);
34 34
         }
35 35
         if ($_host[strlen($_host) - 1] == '/') {
36 36
             $this->host = substr($_host, 0, strlen($_host) - 1);
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
         } elseif ($sign_method == 'sha256') {
47 47
             $this->sign_method = 'HmacSHA256';
48 48
         } else {
49
-            throw new CMQClientParameterException('Only support sign method HmasSHA256 or HmacSHA1 . Invalid sign method:'.$sign_method);
49
+            throw new CMQClientParameterException('Only support sign method HmasSHA256 or HmacSHA1 . Invalid sign method:' . $sign_method);
50 50
         }
51 51
     }
52 52
 
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
         $iTimeout = 0;
81 81
 
82 82
         if (array_key_exists('UserpollingWaitSeconds', $params)) {
83
-            $iTimeout = (int) $params['UserpollingWaitSeconds'];
83
+            $iTimeout = (int)$params['UserpollingWaitSeconds'];
84 84
         }
85 85
         // send request
86 86
         $resp_inter = $this->http->send_request($req_inter, $iTimeout);
Please login to merge, or discard this patch.
src/Queue/Driver/ResponseInternal.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,8 +21,8 @@
 block discarded – undo
21 21
     public function __toString()
22 22
     {
23 23
         $info = ['status'      => $this->status,
24
-                      'header' => json_encode($this->header),
25
-                      'data'   => $this->data, ];
24
+                        'header' => json_encode($this->header),
25
+                        'data'   => $this->data, ];
26 26
 
27 27
         return json_encode($info);
28 28
     }
Please login to merge, or discard this patch.
src/Queue/Driver/Queue.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -215,7 +215,7 @@  discard block
 block discarded – undo
215 215
         ];
216 216
         $n = 1;
217 217
         foreach ($messages as $message) {
218
-            $key = 'msgBody.'.$n;
218
+            $key = 'msgBody.' . $n;
219 219
             if ($this->encoding) {
220 220
                 $params[$key] = base64_encode($message->msgBody);
221 221
             } else {
@@ -325,7 +325,7 @@  discard block
 block discarded – undo
325 325
         $params = ['queueName' => $this->queue_name];
326 326
         $n = 1;
327 327
         foreach ($receipt_handle_list as $receipt_handle) {
328
-            $key = 'receiptHandle.'.$n;
328
+            $key = 'receiptHandle.' . $n;
329 329
             $params[$key] = $receipt_handle;
330 330
             $n += 1;
331 331
         }
Please login to merge, or discard this patch.
src/LaravelQueueCMQServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
         }
22 22
         
23 23
         $this->mergeConfigFrom(
24
-            __DIR__.'/../config/cmq.php', 'queue.connections.cmq'
24
+            __DIR__ . '/../config/cmq.php', 'queue.connections.cmq'
25 25
         );
26 26
     }
27 27
 
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
         /** @var QueueManager $queue */
36 36
         $queue = $this->app['queue'];
37 37
 
38
-        $queue->addConnector('cmq', function () {
38
+        $queue->addConnector('cmq', function() {
39 39
             return new CMQConnector();
40 40
         });
41 41
     }
Please login to merge, or discard this patch.
src/Queue/Driver/Subscription.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
         if (is_array($subscription_meta->bindingKey) && !empty($subscription_meta->bindingKey)) {
45 45
             $n = 1;
46 46
             foreach ($subscription_meta->bindingKey as $tag) {
47
-                $key = 'bindingKey.'.$n;
47
+                $key = 'bindingKey.' . $n;
48 48
                 $params[$key] = $tag;
49 49
                 $n += 1;
50 50
             }
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
         if (is_array($subscription_meta->FilterTag) && !empty($subscription_meta->FilterTag)) {
54 54
             $n = 1;
55 55
             foreach ($subscription_meta->FilterTag as $tag) {
56
-                $key = 'filterTag.'.$n;
56
+                $key = 'filterTag.' . $n;
57 57
                 $params[$key] = $tag;
58 58
                 $n += 1;
59 59
             }
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
         if (is_array($subscription_meta->bindingKey) && !empty($subscription_meta->bindingKey)) {
166 166
             $n = 1;
167 167
             foreach ($subscription_meta->bindingKey as $tag) {
168
-                $key = 'bindingKey.'.$n;
168
+                $key = 'bindingKey.' . $n;
169 169
                 $params[$key] = $tag;
170 170
                 $n += 1;
171 171
             }
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
         if (is_array($subscription_meta->FilterTag) && !empty($subscription_meta->FilterTag)) {
175 175
             $n = 1;
176 176
             foreach ($subscription_meta->FilterTag as $tag) {
177
-                $key = 'filterTag.'.$n;
177
+                $key = 'filterTag.' . $n;
178 178
                 $params[$key] = $tag;
179 179
                 $n += 1;
180 180
             }
Please login to merge, or discard this patch.
src/Queue/Driver/CMQHttp.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
     {
13 13
         $this->connection_timeout = $connection_timeout;
14 14
         $this->keep_alive = $keep_alive;
15
-        $this->host = $host.'/v2/index.php';
15
+        $this->host = $host . '/v2/index.php';
16 16
         $this->curl = null;
17 17
     }
18 18
 
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
             curl_setopt($this->curl, CURLOPT_POST, 1);
56 56
             curl_setopt($this->curl, CURLOPT_POSTFIELDS, $req_inter->data);
57 57
         } else {
58
-            $url .= $req_inter->uri.'?'.$req_inter->data;
58
+            $url .= $req_inter->uri . '?' . $req_inter->data;
59 59
         }
60 60
 
61 61
         if (isset($req_inter->header)) {
Please login to merge, or discard this patch.
src/Queue/CMQQueue.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
      */
76 76
     public function isPlain()
77 77
     {
78
-        return (bool) Arr::get($this->plainOptions, 'enable');
78
+        return (bool)Arr::get($this->plainOptions, 'enable');
79 79
     }
80 80
 
81 81
     /**
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
     {
98 98
         $attributes = $this->getQueue($queue)->get_attributes();
99 99
 
100
-        return (int) $attributes->activeMsgNum;
100
+        return (int)$attributes->activeMsgNum;
101 101
     }
102 102
 
103 103
     /**
@@ -147,22 +147,22 @@  discard block
 block discarded – undo
147 147
             switch ($this->topicOptions['filter']) {
148 148
                 case self::CMQ_TOPIC_TAG_FILTER_NAME:
149 149
                     return retry(Arr::get($this->topicOptions, 'retries', 3),
150
-                        function () use ($driver, $message, $queue) {
150
+                        function() use ($driver, $message, $queue) {
151 151
                             return $driver->publish_message($message->msgBody, explode(',', $queue), null);
152 152
                         });
153 153
                 case self::CMQ_TOPIC_ROUTING_FILTER_NAME:
154 154
                     return retry(Arr::get($this->topicOptions, 'retries', 3),
155
-                        function () use ($driver, $message, $queue) {
155
+                        function() use ($driver, $message, $queue) {
156 156
                             $driver->publish_message($message->msgBody, [], $queue);
157 157
                         });
158 158
                 default:
159 159
                     throw new \InvalidArgumentException(
160
-                        'Invalid CMQ topic filter: '.$this->topicOptions['filter']
160
+                        'Invalid CMQ topic filter: ' . $this->topicOptions['filter']
161 161
                     );
162 162
             }
163 163
         }
164 164
 
165
-        return retry(Arr::get($this->queueOptions, 'retries', 3), function () use ($driver, $message, $options) {
165
+        return retry(Arr::get($this->queueOptions, 'retries', 3), function() use ($driver, $message, $options) {
166 166
             return $driver->send_message($message, Arr::get($options, 'delay', 0));
167 167
         });
168 168
     }
@@ -209,7 +209,7 @@  discard block
 block discarded – undo
209 209
             $queue = $this->getQueue($queue);
210 210
             $message = $queue->receive_message($this->queueOptions['polling_wait_seconds']);
211 211
         } catch (CMQServerException $e) {
212
-            if (self::CMQ_QUEUE_NO_MESSAGE_CODE === (int) $e->getCode()) { // ignore no message
212
+            if (self::CMQ_QUEUE_NO_MESSAGE_CODE === (int)$e->getCode()) { // ignore no message
213 213
                 return;
214 214
             }
215 215
 
Please login to merge, or discard this patch.