@@ -23,8 +23,8 @@ |
||
23 | 23 | public function __toString() |
24 | 24 | { |
25 | 25 | $info = ['status' => $this->status, |
26 | - 'header' => json_encode($this->header), |
|
27 | - 'data' => $this->data, ]; |
|
26 | + 'header' => json_encode($this->header), |
|
27 | + 'data' => $this->data, ]; |
|
28 | 28 | |
29 | 29 | return 'CMQServerNetworkException '.json_encode($info); |
30 | 30 | } |
@@ -26,6 +26,6 @@ |
||
26 | 26 | 'header' => json_encode($this->header), |
27 | 27 | 'data' => $this->data, ]; |
28 | 28 | |
29 | - return 'CMQServerNetworkException '.json_encode($info); |
|
29 | + return 'CMQServerNetworkException ' . json_encode($info); |
|
30 | 30 | } |
31 | 31 | } |
@@ -38,12 +38,12 @@ |
||
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 | } |
@@ -129,7 +129,7 @@ discard block |
||
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 |
||
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对象 |
@@ -122,7 +122,7 @@ discard block |
||
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 |
||
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 = ''; |
@@ -30,7 +30,7 @@ discard block |
||
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 |
||
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 |
||
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); |
@@ -12,7 +12,7 @@ discard block |
||
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 |
||
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)) { |
@@ -21,8 +21,8 @@ |
||
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 | } |
@@ -215,7 +215,7 @@ discard block |
||
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 |
||
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 | } |
@@ -21,7 +21,7 @@ discard block |
||
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 |
||
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 | } |
@@ -44,7 +44,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 | } |