@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | |
92 | 92 | } |
93 | 93 | |
94 | - throw new MethodNotFoundException("Method " . self::class . '::' . $method . '() is not supported'); |
|
94 | + throw new MethodNotFoundException("Method ".self::class.'::'.$method.'() is not supported'); |
|
95 | 95 | } |
96 | 96 | |
97 | 97 | /** |
@@ -130,20 +130,20 @@ discard block |
||
130 | 130 | if (isset($this->attributes[$name]) && $strict === false) { |
131 | 131 | if ($this->attributize) { |
132 | 132 | $this->attributes[$name]->add($value, true); |
133 | - } else { |
|
133 | + }else { |
|
134 | 134 | if (isset($this->attributes[$name])) { |
135 | 135 | if (!is_array($this->attributes[$name])) { |
136 | 136 | $this->attributes[$name] = [$this->attributes[$name], $value]; |
137 | - } else { |
|
137 | + }else { |
|
138 | 138 | $this->attributes[$name][] = $value; |
139 | 139 | } |
140 | - } else { |
|
140 | + }else { |
|
141 | 141 | $this->attributes[$name] = $value; |
142 | 142 | } |
143 | 143 | } |
144 | 144 | } elseif (!$this->attributize) { |
145 | 145 | $this->attributes[$name] = $value; |
146 | - } else { |
|
146 | + }else { |
|
147 | 147 | $this->attributes[$name] = new Attribute($name, $value); |
148 | 148 | } |
149 | 149 | |
@@ -236,7 +236,7 @@ discard block |
||
236 | 236 | $headers = []; |
237 | 237 | $imap_headers = []; |
238 | 238 | if (extension_loaded('imap') && $this->config["rfc822"]) { |
239 | - $raw_imap_headers = (array)\imap_rfc822_parse_headers($this->raw); |
|
239 | + $raw_imap_headers = (array) \imap_rfc822_parse_headers($this->raw); |
|
240 | 240 | foreach ($raw_imap_headers as $key => $values) { |
241 | 241 | $key = str_replace("-", "_", $key); |
242 | 242 | $imap_headers[$key] = $values; |
@@ -264,11 +264,11 @@ discard block |
||
264 | 264 | } |
265 | 265 | if (is_array($headers[$prev_header])) { |
266 | 266 | $headers[$prev_header][] = $line; |
267 | - } else { |
|
267 | + }else { |
|
268 | 268 | $headers[$prev_header] .= $line; |
269 | 269 | } |
270 | 270 | } |
271 | - } else { |
|
271 | + }else { |
|
272 | 272 | if (($pos = strpos($line, ":")) > 0) { |
273 | 273 | $key = trim(rtrim(strtolower(substr($line, 0, $pos)))); |
274 | 274 | $key = str_replace("-", "_", $key); |
@@ -276,7 +276,7 @@ discard block |
||
276 | 276 | $value = trim(rtrim(substr($line, $pos + 1))); |
277 | 277 | if (isset($headers[$key])) { |
278 | 278 | $headers[$key][] = $value; |
279 | - } else { |
|
279 | + }else { |
|
280 | 280 | $headers[$key] = [$value]; |
281 | 281 | } |
282 | 282 | $prev_header = $key; |
@@ -295,7 +295,7 @@ discard block |
||
295 | 295 | case 'reply_to': |
296 | 296 | case 'sender': |
297 | 297 | $value = $this->decodeAddresses($values); |
298 | - $headers[$key . "address"] = implode(", ", $values); |
|
298 | + $headers[$key."address"] = implode(", ", $values); |
|
299 | 299 | break; |
300 | 300 | case 'subject': |
301 | 301 | $value = implode(" ", $values); |
@@ -314,7 +314,7 @@ discard block |
||
314 | 314 | $value = implode(" ", $values); |
315 | 315 | } elseif ($available_values > 2) { |
316 | 316 | $value = array_values($values); |
317 | - } else { |
|
317 | + }else { |
|
318 | 318 | $value = ""; |
319 | 319 | } |
320 | 320 | } |
@@ -323,7 +323,7 @@ discard block |
||
323 | 323 | $headers[$key] = $value; |
324 | 324 | } |
325 | 325 | |
326 | - return (object)array_merge($headers, $imap_headers); |
|
326 | + return (object) array_merge($headers, $imap_headers); |
|
327 | 327 | } |
328 | 328 | |
329 | 329 | /** |
@@ -340,7 +340,7 @@ discard block |
||
340 | 340 | return is_array($result) ? $result : []; |
341 | 341 | } |
342 | 342 | $charset = $this->getEncoding($text); |
343 | - return [(object)[ |
|
343 | + return [(object) [ |
|
344 | 344 | "charset" => $charset, |
345 | 345 | "text" => $this->convertEncoding($text, $charset) |
346 | 346 | ]]; |
@@ -394,7 +394,7 @@ discard block |
||
394 | 394 | try { |
395 | 395 | if (function_exists('iconv') && $from != 'UTF-7' && $to != 'UTF-7') { |
396 | 396 | return iconv($from, $to, $str); |
397 | - } else { |
|
397 | + }else { |
|
398 | 398 | if (!$from) { |
399 | 399 | return mb_convert_encoding($str, $to); |
400 | 400 | } |
@@ -404,7 +404,7 @@ discard block |
||
404 | 404 | if (strstr($from, '-')) { |
405 | 405 | $from = str_replace('-', '', $from); |
406 | 406 | return $this->convertEncoding($str, $from, $to); |
407 | - } else { |
|
407 | + }else { |
|
408 | 408 | return $str; |
409 | 409 | } |
410 | 410 | } |
@@ -509,7 +509,7 @@ discard block |
||
509 | 509 | */ |
510 | 510 | private function findPriority() { |
511 | 511 | if (($priority = $this->get("x_priority")) === null) return; |
512 | - switch ((int)"$priority") { |
|
512 | + switch ((int) "$priority") { |
|
513 | 513 | case IMAP::MESSAGE_PRIORITY_HIGHEST; |
514 | 514 | $priority = IMAP::MESSAGE_PRIORITY_HIGHEST; |
515 | 515 | break; |
@@ -548,7 +548,7 @@ discard block |
||
548 | 548 | if (isset($parsed_address['address'])) { |
549 | 549 | $mail_address = explode('@', $parsed_address['address']); |
550 | 550 | if (count($mail_address) == 2) { |
551 | - $addresses[] = (object)[ |
|
551 | + $addresses[] = (object) [ |
|
552 | 552 | "personal" => $parsed_address['display'] ?? '', |
553 | 553 | "mailbox" => $mail_address[0], |
554 | 554 | "host" => $mail_address[1], |
@@ -576,7 +576,7 @@ discard block |
||
576 | 576 | $name = trim(rtrim($matches["name"])); |
577 | 577 | $email = trim(rtrim($matches["email"])); |
578 | 578 | list($mailbox, $host) = array_pad(explode("@", $email), 2, null); |
579 | - $addresses[] = (object)[ |
|
579 | + $addresses[] = (object) [ |
|
580 | 580 | "personal" => $name, |
581 | 581 | "mailbox" => $mailbox, |
582 | 582 | "host" => $host, |
@@ -614,7 +614,7 @@ discard block |
||
614 | 614 | } |
615 | 615 | |
616 | 616 | foreach ($list as $item) { |
617 | - $address = (object)$item; |
|
617 | + $address = (object) $item; |
|
618 | 618 | |
619 | 619 | if (!property_exists($address, 'mailbox')) { |
620 | 620 | $address->mailbox = false; |
@@ -624,7 +624,7 @@ discard block |
||
624 | 624 | } |
625 | 625 | if (!property_exists($address, 'personal')) { |
626 | 626 | $address->personal = false; |
627 | - } else { |
|
627 | + }else { |
|
628 | 628 | $personalParts = $this->mime_header_decode($address->personal); |
629 | 629 | |
630 | 630 | if (is_array($personalParts)) { |
@@ -639,8 +639,8 @@ discard block |
||
639 | 639 | } |
640 | 640 | } |
641 | 641 | |
642 | - $address->mail = ($address->mailbox && $address->host) ? $address->mailbox . '@' . $address->host : false; |
|
643 | - $address->full = ($address->personal) ? $address->personal . ' <' . $address->mail . '>' : $address->mail; |
|
642 | + $address->mail = ($address->mailbox && $address->host) ? $address->mailbox.'@'.$address->host : false; |
|
643 | + $address->full = ($address->personal) ? $address->personal.' <'.$address->mail.'>' : $address->mail; |
|
644 | 644 | |
645 | 645 | $addresses[] = new Address($address); |
646 | 646 | } |
@@ -655,8 +655,8 @@ discard block |
||
655 | 655 | foreach ($this->attributes as $key => $value) { |
656 | 656 | if (is_array($value)) { |
657 | 657 | $value = implode(", ", $value); |
658 | - } else { |
|
659 | - $value = (string)$value; |
|
658 | + }else { |
|
659 | + $value = (string) $value; |
|
660 | 660 | } |
661 | 661 | // Only parse strings and don't parse any attributes like the user-agent |
662 | 662 | if (($key == "user_agent") === false) { |
@@ -715,7 +715,7 @@ discard block |
||
715 | 715 | |
716 | 716 | $date = trim(rtrim($date)); |
717 | 717 | try { |
718 | - if(strpos($date, ' ') !== false){ |
|
718 | + if (strpos($date, ' ') !== false) { |
|
719 | 719 | $date = str_replace(' ', ' ', $date); |
720 | 720 | } |
721 | 721 | $parsed_date = Carbon::parse($date); |
@@ -742,8 +742,8 @@ discard block |
||
742 | 742 | $parsed_date = Carbon::parse($date); |
743 | 743 | } catch (\Exception $_e) { |
744 | 744 | if (!isset($this->config["fallback_date"])) { |
745 | - throw new InvalidMessageDateException("Invalid message date. ID:" . $this->get("message_id") . " Date:" . $header->date . "/" . $date, 1100, $e); |
|
746 | - } else { |
|
745 | + throw new InvalidMessageDateException("Invalid message date. ID:".$this->get("message_id")." Date:".$header->date."/".$date, 1100, $e); |
|
746 | + }else { |
|
747 | 747 | $parsed_date = Carbon::parse($this->config["fallback_date"]); |
748 | 748 | } |
749 | 749 | } |
@@ -76,17 +76,17 @@ discard block |
||
76 | 76 | public static function get(string $key, $default = null) { |
77 | 77 | $parts = explode('.', $key); |
78 | 78 | $value = null; |
79 | - foreach($parts as $part) { |
|
80 | - if($value === null) { |
|
81 | - if(isset(self::$config[$part])) { |
|
79 | + foreach ($parts as $part) { |
|
80 | + if ($value === null) { |
|
81 | + if (isset(self::$config[$part])) { |
|
82 | 82 | $value = self::$config[$part]; |
83 | - }else{ |
|
83 | + }else { |
|
84 | 84 | break; |
85 | 85 | } |
86 | - }else{ |
|
87 | - if(isset($value[$part])) { |
|
86 | + }else { |
|
87 | + if (isset($value[$part])) { |
|
88 | 88 | $value = $value[$part]; |
89 | - }else{ |
|
89 | + }else { |
|
90 | 90 | break; |
91 | 91 | } |
92 | 92 | } |
@@ -175,7 +175,7 @@ discard block |
||
175 | 175 | */ |
176 | 176 | public function setConfig($config): ClientManager { |
177 | 177 | |
178 | - if(is_array($config) === false) { |
|
178 | + if (is_array($config) === false) { |
|
179 | 179 | $config = require $config; |
180 | 180 | } |
181 | 181 | |
@@ -185,17 +185,17 @@ discard block |
||
185 | 185 | $vendor_config = require $path; |
186 | 186 | $config = $this->array_merge_recursive_distinct($vendor_config, $config); |
187 | 187 | |
188 | - if(is_array($config)){ |
|
189 | - if(isset($config['default'])){ |
|
190 | - if(isset($config['accounts']) && $config['default']){ |
|
188 | + if (is_array($config)) { |
|
189 | + if (isset($config['default'])) { |
|
190 | + if (isset($config['accounts']) && $config['default']) { |
|
191 | 191 | |
192 | 192 | $default_config = $vendor_config['accounts']['default']; |
193 | - if(isset($config['accounts'][$config['default']])){ |
|
193 | + if (isset($config['accounts'][$config['default']])) { |
|
194 | 194 | $default_config = array_merge($default_config, $config['accounts'][$config['default']]); |
195 | 195 | } |
196 | 196 | |
197 | - if(is_array($config['accounts'])){ |
|
198 | - foreach($config['accounts'] as $account_key => $account){ |
|
197 | + if (is_array($config['accounts'])) { |
|
198 | + foreach ($config['accounts'] as $account_key => $account) { |
|
199 | 199 | $config['accounts'][$account_key] = array_merge($default_config, $account); |
200 | 200 | } |
201 | 201 | } |
@@ -234,20 +234,20 @@ discard block |
||
234 | 234 | return array_keys($arr) !== range(0, count($arr) - 1); |
235 | 235 | }; |
236 | 236 | |
237 | - if(!is_array($base)) $base = empty($base) ? array() : array($base); |
|
237 | + if (!is_array($base)) $base = empty($base) ? array() : array($base); |
|
238 | 238 | |
239 | - foreach($arrays as $append) { |
|
239 | + foreach ($arrays as $append) { |
|
240 | 240 | |
241 | - if(!is_array($append)) $append = array($append); |
|
241 | + if (!is_array($append)) $append = array($append); |
|
242 | 242 | |
243 | - foreach($append as $key => $value) { |
|
243 | + foreach ($append as $key => $value) { |
|
244 | 244 | |
245 | - if(!array_key_exists($key, $base) and !is_numeric($key)) { |
|
245 | + if (!array_key_exists($key, $base) and !is_numeric($key)) { |
|
246 | 246 | $base[$key] = $value; |
247 | 247 | continue; |
248 | 248 | } |
249 | 249 | |
250 | - if( |
|
250 | + if ( |
|
251 | 251 | ( |
252 | 252 | is_array($value) |
253 | 253 | && $isAssoc($value) |
@@ -261,9 +261,9 @@ discard block |
||
261 | 261 | // else merging $baseConfig['dispositions'] = ['attachment', 'inline'] with $customConfig['dispositions'] = ['attachment'] |
262 | 262 | // results in $resultConfig['dispositions'] = ['attachment', 'inline'] |
263 | 263 | $base[$key] = $this->array_merge_recursive_distinct($base[$key], $value); |
264 | - } else if(is_numeric($key)) { |
|
265 | - if(!in_array($value, $base)) $base[] = $value; |
|
266 | - } else { |
|
264 | + }else if (is_numeric($key)) { |
|
265 | + if (!in_array($value, $base)) $base[] = $value; |
|
266 | + }else { |
|
267 | 267 | $base[$key] = $value; |
268 | 268 | } |
269 | 269 |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | * @throws ConnectionFailedException |
90 | 90 | * @throws RuntimeException |
91 | 91 | */ |
92 | - protected function enableStartTls(){ |
|
92 | + protected function enableStartTls() { |
|
93 | 93 | $response = $this->requestAndResponse('STARTTLS'); |
94 | 94 | $result = $response && stream_socket_enable_crypto($this->stream, true, $this->getCryptoMethod()); |
95 | 95 | if (!$result) { |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | throw new RuntimeException('empty response'); |
113 | 113 | } |
114 | 114 | if ($this->debug) echo "<< ".$line."\n"; |
115 | - return $line . "\n"; |
|
115 | + return $line."\n"; |
|
116 | 116 | } |
117 | 117 | |
118 | 118 | /** |
@@ -165,7 +165,7 @@ discard block |
||
165 | 165 | $stack = []; |
166 | 166 | |
167 | 167 | // replace any trailing <NL> including spaces with a single space |
168 | - $line = rtrim($line) . ' '; |
|
168 | + $line = rtrim($line).' '; |
|
169 | 169 | while (($pos = strpos($line, ' ')) !== false) { |
170 | 170 | $token = substr($line, 0, $pos); |
171 | 171 | if (!strlen($token)) { |
@@ -195,11 +195,11 @@ discard block |
||
195 | 195 | if (strlen($token) > $chars) { |
196 | 196 | $line = substr($token, $chars); |
197 | 197 | $token = substr($token, 0, $chars); |
198 | - } else { |
|
198 | + }else { |
|
199 | 199 | $line .= $this->nextLine(); |
200 | 200 | } |
201 | 201 | $tokens[] = $token; |
202 | - $line = trim($line) . ' '; |
|
202 | + $line = trim($line).' '; |
|
203 | 203 | continue; |
204 | 204 | } |
205 | 205 | } |
@@ -249,7 +249,7 @@ discard block |
||
249 | 249 | $line = $this->nextTaggedLine($tag); // get next tag |
250 | 250 | if (!$dontParse) { |
251 | 251 | $tokens = $this->decodeLine($line); |
252 | - } else { |
|
252 | + }else { |
|
253 | 253 | $tokens = $line; |
254 | 254 | } |
255 | 255 | |
@@ -299,20 +299,20 @@ discard block |
||
299 | 299 | public function sendRequest(string $command, array $tokens = [], string &$tag = null) { |
300 | 300 | if (!$tag) { |
301 | 301 | $this->noun++; |
302 | - $tag = 'TAG' . $this->noun; |
|
302 | + $tag = 'TAG'.$this->noun; |
|
303 | 303 | } |
304 | 304 | |
305 | - $line = $tag . ' ' . $command; |
|
305 | + $line = $tag.' '.$command; |
|
306 | 306 | |
307 | 307 | foreach ($tokens as $token) { |
308 | 308 | if (is_array($token)) { |
309 | - $this->write($line . ' ' . $token[0]); |
|
309 | + $this->write($line.' '.$token[0]); |
|
310 | 310 | if (!$this->assumedNextLine('+ ')) { |
311 | 311 | throw new RuntimeException('failed to send literal string'); |
312 | 312 | } |
313 | 313 | $line = $token[1]; |
314 | - } else { |
|
315 | - $line .= ' ' . $token; |
|
314 | + }else { |
|
315 | + $line .= ' '.$token; |
|
316 | 316 | } |
317 | 317 | } |
318 | 318 | $this->write($line); |
@@ -325,9 +325,9 @@ discard block |
||
325 | 325 | * @throws RuntimeException |
326 | 326 | */ |
327 | 327 | public function write(string $data) { |
328 | - if ($this->debug) echo ">> ".$data ."\n"; |
|
328 | + if ($this->debug) echo ">> ".$data."\n"; |
|
329 | 329 | |
330 | - if (fwrite($this->stream, $data . "\r\n") === false) { |
|
330 | + if (fwrite($this->stream, $data."\r\n") === false) { |
|
331 | 331 | throw new RuntimeException('failed to write - connection closed?'); |
332 | 332 | } |
333 | 333 | } |
@@ -357,9 +357,9 @@ discard block |
||
357 | 357 | public function escapeString($string) { |
358 | 358 | if (func_num_args() < 2) { |
359 | 359 | if (strpos($string, "\n") !== false) { |
360 | - return ['{' . strlen($string) . '}', $string]; |
|
361 | - } else { |
|
362 | - return '"' . str_replace(['\\', '"'], ['\\\\', '\\"'], $string) . '"'; |
|
360 | + return ['{'.strlen($string).'}', $string]; |
|
361 | + }else { |
|
362 | + return '"'.str_replace(['\\', '"'], ['\\\\', '\\"'], $string).'"'; |
|
363 | 363 | } |
364 | 364 | } |
365 | 365 | $result = []; |
@@ -384,7 +384,7 @@ discard block |
||
384 | 384 | } |
385 | 385 | $result[] = $this->escapeList($v); |
386 | 386 | } |
387 | - return '(' . implode(' ', $result) . ')'; |
|
387 | + return '('.implode(' ', $result).')'; |
|
388 | 388 | } |
389 | 389 | |
390 | 390 | /** |
@@ -425,12 +425,12 @@ discard block |
||
425 | 425 | error_log("got an extra server challenge: $response"); |
426 | 426 | // respond with an empty response. |
427 | 427 | $this->sendRequest(''); |
428 | - } else { |
|
428 | + }else { |
|
429 | 429 | if (preg_match('/^NO /i', $response) || |
430 | 430 | preg_match('/^BAD /i', $response)) { |
431 | 431 | error_log("got failure response: $response"); |
432 | 432 | return false; |
433 | - } else if (preg_match("/^OK /i", $response)) { |
|
433 | + }else if (preg_match("/^OK /i", $response)) { |
|
434 | 434 | return true; |
435 | 435 | } |
436 | 436 | } |
@@ -511,10 +511,10 @@ discard block |
||
511 | 511 | $result[strtolower($tokens[1])] = $tokens[0]; |
512 | 512 | break; |
513 | 513 | case '[UIDVALIDITY': |
514 | - $result['uidvalidity'] = (int)$tokens[2]; |
|
514 | + $result['uidvalidity'] = (int) $tokens[2]; |
|
515 | 515 | break; |
516 | 516 | case '[UIDNEXT': |
517 | - $result['uidnext'] = (int)$tokens[2]; |
|
517 | + $result['uidnext'] = (int) $tokens[2]; |
|
518 | 518 | break; |
519 | 519 | default: |
520 | 520 | // ignore |
@@ -571,14 +571,14 @@ discard block |
||
571 | 571 | if (is_array($from)) { |
572 | 572 | $set = implode(',', $from); |
573 | 573 | } elseif ($to === null) { |
574 | - $set = (int)$from; |
|
574 | + $set = (int) $from; |
|
575 | 575 | } elseif ($to === INF) { |
576 | - $set = (int)$from . ':*'; |
|
577 | - } else { |
|
578 | - $set = (int)$from . ':' . (int)$to; |
|
576 | + $set = (int) $from.':*'; |
|
577 | + }else { |
|
578 | + $set = (int) $from.':'.(int) $to; |
|
579 | 579 | } |
580 | 580 | |
581 | - $items = (array)$items; |
|
581 | + $items = (array) $items; |
|
582 | 582 | $itemList = $this->escapeList($items); |
583 | 583 | |
584 | 584 | $this->sendRequest($this->buildUIDCommand("FETCH", $uid), [$set, $itemList], $tag); |
@@ -595,9 +595,9 @@ discard block |
||
595 | 595 | $count = count($tokens[2]); |
596 | 596 | if ($tokens[2][$count - 2] == 'UID') { |
597 | 597 | $uidKey = $count - 1; |
598 | - } else if ($tokens[2][0] == 'UID') { |
|
598 | + }else if ($tokens[2][0] == 'UID') { |
|
599 | 599 | $uidKey = 1; |
600 | - } else { |
|
600 | + }else { |
|
601 | 601 | $uidKey = array_search('UID', $tokens[2]) + 1; |
602 | 602 | } |
603 | 603 | } |
@@ -614,7 +614,7 @@ discard block |
||
614 | 614 | $data = $tokens[2][1]; |
615 | 615 | } elseif ($uid && $tokens[2][2] == $items[0]) { |
616 | 616 | $data = $tokens[2][3]; |
617 | - } else { |
|
617 | + }else { |
|
618 | 618 | // maybe the server send an other field we didn't wanted |
619 | 619 | $count = count($tokens[2]); |
620 | 620 | // we start with 2, because 0 was already checked |
@@ -626,7 +626,7 @@ discard block |
||
626 | 626 | break; |
627 | 627 | } |
628 | 628 | } |
629 | - } else { |
|
629 | + }else { |
|
630 | 630 | $data = []; |
631 | 631 | while (key($tokens[2]) !== null) { |
632 | 632 | $data[current($tokens[2])] = next($tokens[2]); |
@@ -643,7 +643,7 @@ discard block |
||
643 | 643 | } |
644 | 644 | if ($uid) { |
645 | 645 | $result[$tokens[2][$uidKey]] = $data; |
646 | - }else{ |
|
646 | + }else { |
|
647 | 647 | $result[$tokens[0]] = $data; |
648 | 648 | } |
649 | 649 | } |
@@ -744,7 +744,7 @@ discard block |
||
744 | 744 | $ids = $this->getUid(); |
745 | 745 | foreach ($ids as $k => $v) { |
746 | 746 | if ($v == $id) { |
747 | - return (int)$k; |
|
747 | + return (int) $k; |
|
748 | 748 | } |
749 | 749 | } |
750 | 750 | |
@@ -801,7 +801,7 @@ discard block |
||
801 | 801 | $response = $this->requestAndResponse($command, [$set, $item, $flags], $silent); |
802 | 802 | |
803 | 803 | if ($silent) { |
804 | - return (bool)$response; |
|
804 | + return (bool) $response; |
|
805 | 805 | } |
806 | 806 | |
807 | 807 | $result = []; |
@@ -854,7 +854,7 @@ discard block |
||
854 | 854 | public function copyMessage(string $folder, $from, $to = null, $uid = IMAP::ST_UID): bool { |
855 | 855 | $set = $this->buildSet($from, $to); |
856 | 856 | $command = $this->buildUIDCommand("COPY", $uid); |
857 | - return (bool)$this->requestAndResponse($command, [$set, $this->escapeString($folder)], true); |
|
857 | + return (bool) $this->requestAndResponse($command, [$set, $this->escapeString($folder)], true); |
|
858 | 858 | } |
859 | 859 | |
860 | 860 | /** |
@@ -893,7 +893,7 @@ discard block |
||
893 | 893 | $set = $this->buildSet($from, $to); |
894 | 894 | $command = $this->buildUIDCommand("MOVE", $uid); |
895 | 895 | |
896 | - return (bool)$this->requestAndResponse($command, [$set, $this->escapeString($folder)], true); |
|
896 | + return (bool) $this->requestAndResponse($command, [$set, $this->escapeString($folder)], true); |
|
897 | 897 | } |
898 | 898 | |
899 | 899 | /** |
@@ -945,7 +945,7 @@ discard block |
||
945 | 945 | * @throws RuntimeException |
946 | 946 | */ |
947 | 947 | public function createFolder(string $folder): bool { |
948 | - return (bool)$this->requestAndResponse('CREATE', [$this->escapeString($folder)], true); |
|
948 | + return (bool) $this->requestAndResponse('CREATE', [$this->escapeString($folder)], true); |
|
949 | 949 | } |
950 | 950 | |
951 | 951 | /** |
@@ -957,7 +957,7 @@ discard block |
||
957 | 957 | * @throws RuntimeException |
958 | 958 | */ |
959 | 959 | public function renameFolder(string $old, string $new): bool { |
960 | - return (bool)$this->requestAndResponse('RENAME', $this->escapeString($old, $new), true); |
|
960 | + return (bool) $this->requestAndResponse('RENAME', $this->escapeString($old, $new), true); |
|
961 | 961 | } |
962 | 962 | |
963 | 963 | /** |
@@ -968,7 +968,7 @@ discard block |
||
968 | 968 | * @throws RuntimeException |
969 | 969 | */ |
970 | 970 | public function deleteFolder(string $folder): bool { |
971 | - return (bool)$this->requestAndResponse('DELETE', [$this->escapeString($folder)], true); |
|
971 | + return (bool) $this->requestAndResponse('DELETE', [$this->escapeString($folder)], true); |
|
972 | 972 | } |
973 | 973 | |
974 | 974 | /** |
@@ -979,7 +979,7 @@ discard block |
||
979 | 979 | * @throws RuntimeException |
980 | 980 | */ |
981 | 981 | public function subscribeFolder(string $folder): bool { |
982 | - return (bool)$this->requestAndResponse('SUBSCRIBE', [$this->escapeString($folder)], true); |
|
982 | + return (bool) $this->requestAndResponse('SUBSCRIBE', [$this->escapeString($folder)], true); |
|
983 | 983 | } |
984 | 984 | |
985 | 985 | /** |
@@ -990,7 +990,7 @@ discard block |
||
990 | 990 | * @throws RuntimeException |
991 | 991 | */ |
992 | 992 | public function unsubscribeFolder(string $folder): bool { |
993 | - return (bool)$this->requestAndResponse('UNSUBSCRIBE', [$this->escapeString($folder)], true); |
|
993 | + return (bool) $this->requestAndResponse('UNSUBSCRIBE', [$this->escapeString($folder)], true); |
|
994 | 994 | } |
995 | 995 | |
996 | 996 | /** |
@@ -1000,7 +1000,7 @@ discard block |
||
1000 | 1000 | * @throws RuntimeException |
1001 | 1001 | */ |
1002 | 1002 | public function expunge(): bool { |
1003 | - return (bool)$this->requestAndResponse('EXPUNGE'); |
|
1003 | + return (bool) $this->requestAndResponse('EXPUNGE'); |
|
1004 | 1004 | } |
1005 | 1005 | |
1006 | 1006 | /** |
@@ -1010,7 +1010,7 @@ discard block |
||
1010 | 1010 | * @throws RuntimeException |
1011 | 1011 | */ |
1012 | 1012 | public function noop(): bool { |
1013 | - return (bool)$this->requestAndResponse('NOOP'); |
|
1013 | + return (bool) $this->requestAndResponse('NOOP'); |
|
1014 | 1014 | } |
1015 | 1015 | |
1016 | 1016 | /** |
@@ -1103,7 +1103,7 @@ discard block |
||
1103 | 1103 | $ids = []; |
1104 | 1104 | foreach ($uids as $msgn => $v) { |
1105 | 1105 | $id = $uid ? $v : $msgn; |
1106 | - if ( ($to >= $id && $from <= $id) || ($to === "*" && $from <= $id) ){ |
|
1106 | + if (($to >= $id && $from <= $id) || ($to === "*" && $from <= $id)) { |
|
1107 | 1107 | $ids[] = $id; |
1108 | 1108 | } |
1109 | 1109 | } |
@@ -1117,14 +1117,14 @@ discard block |
||
1117 | 1117 | /** |
1118 | 1118 | * Enable the debug mode |
1119 | 1119 | */ |
1120 | - public function enableDebug(){ |
|
1120 | + public function enableDebug() { |
|
1121 | 1121 | $this->debug = true; |
1122 | 1122 | } |
1123 | 1123 | |
1124 | 1124 | /** |
1125 | 1125 | * Disable the debug mode |
1126 | 1126 | */ |
1127 | - public function disableDebug(){ |
|
1127 | + public function disableDebug() { |
|
1128 | 1128 | $this->debug = false; |
1129 | 1129 | } |
1130 | 1130 | |
@@ -1136,9 +1136,9 @@ discard block |
||
1136 | 1136 | * @return int|string |
1137 | 1137 | */ |
1138 | 1138 | public function buildSet($from, $to = null) { |
1139 | - $set = (int)$from; |
|
1139 | + $set = (int) $from; |
|
1140 | 1140 | if ($to !== null) { |
1141 | - $set .= ':' . ($to == INF ? '*' : (int)$to); |
|
1141 | + $set .= ':'.($to == INF ? '*' : (int) $to); |
|
1142 | 1142 | } |
1143 | 1143 | return $set; |
1144 | 1144 | } |
@@ -111,7 +111,9 @@ discard block |
||
111 | 111 | if ($line === "") { |
112 | 112 | throw new RuntimeException('empty response'); |
113 | 113 | } |
114 | - if ($this->debug) echo "<< ".$line."\n"; |
|
114 | + if ($this->debug) { |
|
115 | + echo "<< ".$line."\n"; |
|
116 | + } |
|
115 | 117 | return $line . "\n"; |
116 | 118 | } |
117 | 119 | |
@@ -325,7 +327,9 @@ discard block |
||
325 | 327 | * @throws RuntimeException |
326 | 328 | */ |
327 | 329 | public function write(string $data) { |
328 | - if ($this->debug) echo ">> ".$data ."\n"; |
|
330 | + if ($this->debug) { |
|
331 | + echo ">> ".$data ."\n"; |
|
332 | + } |
|
329 | 333 | |
330 | 334 | if (fwrite($this->stream, $data . "\r\n") === false) { |
331 | 335 | throw new RuntimeException('failed to write - connection closed?'); |
@@ -477,7 +481,9 @@ discard block |
||
477 | 481 | public function getCapabilities(): array { |
478 | 482 | $response = $this->requestAndResponse('CAPABILITY'); |
479 | 483 | |
480 | - if (!$response) return []; |
|
484 | + if (!$response) { |
|
485 | + return []; |
|
486 | + } |
|
481 | 487 | |
482 | 488 | $capabilities = []; |
483 | 489 | foreach ($response as $line) { |
@@ -637,13 +643,14 @@ discard block |
||
637 | 643 | // if we want only one message we can ignore everything else and just return |
638 | 644 | if ($to === null && !is_array($from) && ($uid ? $tokens[2][$uidKey] == $from : $tokens[0] == $from)) { |
639 | 645 | // we still need to read all lines |
640 | - while (!$this->readLine($tokens, $tag)) |
|
641 | - |
|
646 | + while (!$this->readLine($tokens, $tag)) { |
|
647 | + |
|
642 | 648 | return $data; |
649 | + } |
|
643 | 650 | } |
644 | 651 | if ($uid) { |
645 | 652 | $result[$tokens[2][$uidKey]] = $data; |
646 | - }else{ |
|
653 | + } else{ |
|
647 | 654 | $result[$tokens[0]] = $data; |
648 | 655 | } |
649 | 656 | } |
@@ -1073,7 +1080,9 @@ discard block |
||
1073 | 1080 | public function search(array $params, $uid = IMAP::ST_UID): array { |
1074 | 1081 | $command = $this->buildUIDCommand("SEARCH", $uid); |
1075 | 1082 | $response = $this->requestAndResponse($command, $params); |
1076 | - if (!$response) return []; |
|
1083 | + if (!$response) { |
|
1084 | + return []; |
|
1085 | + } |
|
1077 | 1086 | |
1078 | 1087 | foreach ($response as $ids) { |
1079 | 1088 | if ($ids[0] == 'SEARCH') { |
@@ -192,7 +192,7 @@ discard block |
||
192 | 192 | $this->boot(); |
193 | 193 | |
194 | 194 | $default_mask = $client->getDefaultMessageMask(); |
195 | - if($default_mask != null) { |
|
195 | + if ($default_mask != null) { |
|
196 | 196 | $this->mask = $default_mask; |
197 | 197 | } |
198 | 198 | $this->events["message"] = $client->getDefaultEvents("message"); |
@@ -253,7 +253,7 @@ discard block |
||
253 | 253 | $instance->boot(); |
254 | 254 | |
255 | 255 | $default_mask = $client->getDefaultMessageMask(); |
256 | - if($default_mask != null) { |
|
256 | + if ($default_mask != null) { |
|
257 | 257 | $instance->setMask($default_mask); |
258 | 258 | } |
259 | 259 | $instance->setEvents([ |
@@ -278,7 +278,7 @@ discard block |
||
278 | 278 | /** |
279 | 279 | * Boot a new instance |
280 | 280 | */ |
281 | - public function boot(){ |
|
281 | + public function boot() { |
|
282 | 282 | $this->attributes = []; |
283 | 283 | |
284 | 284 | $this->config = ClientManager::get('options'); |
@@ -297,13 +297,13 @@ discard block |
||
297 | 297 | * @throws MethodNotFoundException |
298 | 298 | */ |
299 | 299 | public function __call(string $method, array $arguments) { |
300 | - if(strtolower(substr($method, 0, 3)) === 'get') { |
|
300 | + if (strtolower(substr($method, 0, 3)) === 'get') { |
|
301 | 301 | $name = Str::snake(substr($method, 3)); |
302 | 302 | return $this->get($name); |
303 | 303 | }elseif (strtolower(substr($method, 0, 3)) === 'set') { |
304 | 304 | $name = Str::snake(substr($method, 3)); |
305 | 305 | |
306 | - if(in_array($name, array_keys($this->attributes))) { |
|
306 | + if (in_array($name, array_keys($this->attributes))) { |
|
307 | 307 | return $this->__set($name, array_pop($arguments)); |
308 | 308 | } |
309 | 309 | |
@@ -342,7 +342,7 @@ discard block |
||
342 | 342 | * @return Attribute|mixed|null |
343 | 343 | */ |
344 | 344 | public function get($name) { |
345 | - if(isset($this->attributes[$name])) { |
|
345 | + if (isset($this->attributes[$name])) { |
|
346 | 346 | return $this->attributes[$name]; |
347 | 347 | } |
348 | 348 | |
@@ -416,7 +416,7 @@ discard block |
||
416 | 416 | * |
417 | 417 | * @throws InvalidMessageDateException |
418 | 418 | */ |
419 | - public function parseRawHeader(string $raw_header){ |
|
419 | + public function parseRawHeader(string $raw_header) { |
|
420 | 420 | $this->header = new Header($raw_header); |
421 | 421 | } |
422 | 422 | |
@@ -427,8 +427,8 @@ discard block |
||
427 | 427 | public function parseRawFlags(array $raw_flags) { |
428 | 428 | $this->flags = FlagCollection::make([]); |
429 | 429 | |
430 | - foreach($raw_flags as $flag) { |
|
431 | - if (strpos($flag, "\\") === 0){ |
|
430 | + foreach ($raw_flags as $flag) { |
|
431 | + if (strpos($flag, "\\") === 0) { |
|
432 | 432 | $flag = substr($flag, 1); |
433 | 433 | } |
434 | 434 | $flag_key = strtolower($flag); |
@@ -501,7 +501,7 @@ discard block |
||
501 | 501 | * @throws MessageFlagException |
502 | 502 | * @throws Exceptions\RuntimeException |
503 | 503 | */ |
504 | - public function peek(){ |
|
504 | + public function peek() { |
|
505 | 505 | if ($this->fetch_options == IMAP::FT_PEEK) { |
506 | 506 | if ($this->getFlags()->get("seen") == null) { |
507 | 507 | $this->unsetFlag("Seen"); |
@@ -550,7 +550,7 @@ discard block |
||
550 | 550 | private function fetchPart(Part $part) { |
551 | 551 | if ($part->isAttachment()) { |
552 | 552 | $this->fetchAttachment($part); |
553 | - }else{ |
|
553 | + }else { |
|
554 | 554 | $encoding = $this->getEncoding($part); |
555 | 555 | |
556 | 556 | $content = $this->decodeString($part->content, $part->encoding); |
@@ -575,7 +575,7 @@ discard block |
||
575 | 575 | |
576 | 576 | if (isset($this->bodies[$subtype])) { |
577 | 577 | $this->bodies[$subtype] .= "\n".$content; |
578 | - }else{ |
|
578 | + }else { |
|
579 | 579 | $this->bodies[$subtype] = $content; |
580 | 580 | } |
581 | 581 | } |
@@ -591,7 +591,7 @@ discard block |
||
591 | 591 | if ($oAttachment->getName() !== null && $oAttachment->getSize() > 0) { |
592 | 592 | if ($oAttachment->getId() !== null) { |
593 | 593 | $this->attachments->put($oAttachment->getId(), $oAttachment); |
594 | - } else { |
|
594 | + }else { |
|
595 | 595 | $this->attachments->push($oAttachment); |
596 | 596 | } |
597 | 597 | } |
@@ -725,7 +725,7 @@ discard block |
||
725 | 725 | |
726 | 726 | if (function_exists('iconv') && $from != 'UTF-7' && $to != 'UTF-7') { |
727 | 727 | return @iconv($from, $to.'//IGNORE', $str); |
728 | - } else { |
|
728 | + }else { |
|
729 | 729 | if (!$from) { |
730 | 730 | return mb_convert_encoding($str, $to); |
731 | 731 | } |
@@ -746,9 +746,9 @@ discard block |
||
746 | 746 | return EncodingAliases::get($parameter->value, "ISO-8859-2"); |
747 | 747 | } |
748 | 748 | } |
749 | - }elseif (property_exists($structure, 'charset')){ |
|
749 | + }elseif (property_exists($structure, 'charset')) { |
|
750 | 750 | return EncodingAliases::get($structure->charset, "ISO-8859-2"); |
751 | - }elseif (is_string($structure) === true){ |
|
751 | + }elseif (is_string($structure) === true) { |
|
752 | 752 | return mb_detect_encoding($structure); |
753 | 753 | } |
754 | 754 | |
@@ -763,7 +763,7 @@ discard block |
||
763 | 763 | * @throws Exceptions\FolderFetchingException |
764 | 764 | * @throws Exceptions\RuntimeException |
765 | 765 | */ |
766 | - public function getFolder(){ |
|
766 | + public function getFolder() { |
|
767 | 767 | return $this->client->getFolderByPath($this->folder_path); |
768 | 768 | } |
769 | 769 | |
@@ -779,13 +779,13 @@ discard block |
||
779 | 779 | * @throws Exceptions\GetMessagesFailedException |
780 | 780 | * @throws Exceptions\RuntimeException |
781 | 781 | */ |
782 | - public function thread(Folder $sent_folder = null, MessageCollection &$thread = null, Folder $folder = null): MessageCollection { |
|
782 | + public function thread(Folder $sent_folder = null, MessageCollection & $thread = null, Folder $folder = null): MessageCollection { |
|
783 | 783 | $thread = $thread ?: MessageCollection::make([]); |
784 | - $folder = $folder ?: $this->getFolder(); |
|
784 | + $folder = $folder ?: $this->getFolder(); |
|
785 | 785 | $sent_folder = $sent_folder ?: $this->client->getFolderByPath(ClientManager::get("options.common_folders.sent", "INBOX/Sent")); |
786 | 786 | |
787 | 787 | /** @var Message $message */ |
788 | - foreach($thread as $message) { |
|
788 | + foreach ($thread as $message) { |
|
789 | 789 | if ($message->message_id->first() == $this->message_id->first()) { |
790 | 790 | return $thread; |
791 | 791 | } |
@@ -796,7 +796,7 @@ discard block |
||
796 | 796 | $this->fetchThreadByInReplyTo($thread, $this->message_id, $sent_folder, $folder, $sent_folder); |
797 | 797 | |
798 | 798 | if (is_array($this->in_reply_to)) { |
799 | - foreach($this->in_reply_to as $in_reply_to) { |
|
799 | + foreach ($this->in_reply_to as $in_reply_to) { |
|
800 | 800 | $this->fetchThreadByMessageId($thread, $in_reply_to, $folder, $folder, $sent_folder); |
801 | 801 | $this->fetchThreadByMessageId($thread, $in_reply_to, $sent_folder, $folder, $sent_folder); |
802 | 802 | } |
@@ -818,7 +818,7 @@ discard block |
||
818 | 818 | * @throws Exceptions\RuntimeException |
819 | 819 | * @throws Exceptions\FolderFetchingException |
820 | 820 | */ |
821 | - protected function fetchThreadByInReplyTo(MessageCollection &$thread, string $in_reply_to, Folder $primary_folder, Folder $secondary_folder, Folder $sent_folder){ |
|
821 | + protected function fetchThreadByInReplyTo(MessageCollection & $thread, string $in_reply_to, Folder $primary_folder, Folder $secondary_folder, Folder $sent_folder) { |
|
822 | 822 | $primary_folder->query()->inReplyTo($in_reply_to) |
823 | 823 | ->setFetchBody($this->getFetchBodyOption()) |
824 | 824 | ->leaveUnread()->get()->each(function($message) use(&$thread, $secondary_folder, $sent_folder){ |
@@ -840,7 +840,7 @@ discard block |
||
840 | 840 | * @throws Exceptions\RuntimeException |
841 | 841 | * @throws Exceptions\FolderFetchingException |
842 | 842 | */ |
843 | - protected function fetchThreadByMessageId(MessageCollection &$thread, string $message_id, Folder $primary_folder, Folder $secondary_folder, Folder $sent_folder){ |
|
843 | + protected function fetchThreadByMessageId(MessageCollection & $thread, string $message_id, Folder $primary_folder, Folder $secondary_folder, Folder $sent_folder) { |
|
844 | 844 | $primary_folder->query()->messageId($message_id) |
845 | 845 | ->setFetchBody($this->getFetchBodyOption()) |
846 | 846 | ->leaveUnread()->get()->each(function($message) use(&$thread, $secondary_folder, $sent_folder){ |
@@ -937,13 +937,13 @@ discard block |
||
937 | 937 | * @throws MessageHeaderFetchingException |
938 | 938 | */ |
939 | 939 | protected function fetchNewMail(Folder $folder, int $next_uid, string $event, bool $expunge): Message { |
940 | - if($expunge) $this->client->expunge(); |
|
940 | + if ($expunge) $this->client->expunge(); |
|
941 | 941 | |
942 | 942 | $this->client->openFolder($folder->path); |
943 | 943 | |
944 | 944 | if ($this->sequence === IMAP::ST_UID) { |
945 | 945 | $sequence_id = $next_uid; |
946 | - }else{ |
|
946 | + }else { |
|
947 | 947 | $sequence_id = $this->client->getConnection()->getMessageNumber($next_uid); |
948 | 948 | } |
949 | 949 | |
@@ -973,11 +973,11 @@ discard block |
||
973 | 973 | */ |
974 | 974 | public function delete(bool $expunge = true, string $trash_path = null, bool $force_move = false) { |
975 | 975 | $status = $this->setFlag("Deleted"); |
976 | - if($force_move) { |
|
977 | - $trash_path = $trash_path === null ? $this->config["common_folders"]["trash"]: $trash_path; |
|
976 | + if ($force_move) { |
|
977 | + $trash_path = $trash_path === null ? $this->config["common_folders"]["trash"] : $trash_path; |
|
978 | 978 | $status = $this->move($trash_path); |
979 | 979 | } |
980 | - if($expunge) $this->client->expunge(); |
|
980 | + if ($expunge) $this->client->expunge(); |
|
981 | 981 | |
982 | 982 | $event = $this->getEvent("message", "deleted"); |
983 | 983 | $event::dispatch($this); |
@@ -997,7 +997,7 @@ discard block |
||
997 | 997 | */ |
998 | 998 | public function restore(bool $expunge = true): bool { |
999 | 999 | $status = $this->unsetFlag("Deleted"); |
1000 | - if($expunge) $this->client->expunge(); |
|
1000 | + if ($expunge) $this->client->expunge(); |
|
1001 | 1001 | |
1002 | 1002 | $event = $this->getEvent("message", "restored"); |
1003 | 1003 | $event::dispatch($this); |
@@ -1029,7 +1029,7 @@ discard block |
||
1029 | 1029 | $event = $this->getEvent("flag", "new"); |
1030 | 1030 | $event::dispatch($this, $flag); |
1031 | 1031 | |
1032 | - return (bool)$status; |
|
1032 | + return (bool) $status; |
|
1033 | 1033 | } |
1034 | 1034 | |
1035 | 1035 | /** |
@@ -1057,7 +1057,7 @@ discard block |
||
1057 | 1057 | $event = $this->getEvent("flag", "deleted"); |
1058 | 1058 | $event::dispatch($this, $flag); |
1059 | 1059 | |
1060 | - return (bool)$status; |
|
1060 | + return (bool) $status; |
|
1061 | 1061 | } |
1062 | 1062 | |
1063 | 1063 | /** |
@@ -1209,7 +1209,7 @@ discard block |
||
1209 | 1209 | * |
1210 | 1210 | * @return Structure|null |
1211 | 1211 | */ |
1212 | - public function getStructure(){ |
|
1212 | + public function getStructure() { |
|
1213 | 1213 | return $this->structure; |
1214 | 1214 | } |
1215 | 1215 | |
@@ -1246,7 +1246,7 @@ discard block |
||
1246 | 1246 | * @return $this |
1247 | 1247 | */ |
1248 | 1248 | public function setMask($mask): Message { |
1249 | - if(class_exists($mask)){ |
|
1249 | + if (class_exists($mask)) { |
|
1250 | 1250 | $this->mask = $mask; |
1251 | 1251 | } |
1252 | 1252 | |
@@ -1269,9 +1269,9 @@ discard block |
||
1269 | 1269 | * @return mixed |
1270 | 1270 | * @throws MaskNotFoundException |
1271 | 1271 | */ |
1272 | - public function mask($mask = null){ |
|
1272 | + public function mask($mask = null) { |
|
1273 | 1273 | $mask = $mask !== null ? $mask : $this->mask; |
1274 | - if(class_exists($mask)){ |
|
1274 | + if (class_exists($mask)) { |
|
1275 | 1275 | return new $mask($this); |
1276 | 1276 | } |
1277 | 1277 | |
@@ -1421,11 +1421,11 @@ discard block |
||
1421 | 1421 | * @throws Exceptions\ConnectionFailedException |
1422 | 1422 | * @throws Exceptions\MessageNotFoundException |
1423 | 1423 | */ |
1424 | - public function setSequenceId($uid, int $msglist = null){ |
|
1424 | + public function setSequenceId($uid, int $msglist = null) { |
|
1425 | 1425 | if ($this->getSequence() === IMAP::ST_UID) { |
1426 | 1426 | $this->setUid($uid); |
1427 | 1427 | $this->setMsglist($msglist); |
1428 | - }else{ |
|
1428 | + }else { |
|
1429 | 1429 | $this->setMsgn($uid, $msglist); |
1430 | 1430 | } |
1431 | 1431 | } |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | |
96 | 96 | if (ClientManager::get('options.fetch_order') === 'desc') { |
97 | 97 | $this->fetch_order = 'desc'; |
98 | - } else { |
|
98 | + }else { |
|
99 | 99 | $this->fetch_order = 'asc'; |
100 | 100 | } |
101 | 101 | |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | $value = $value->format($this->date_format); |
125 | 125 | } |
126 | 126 | |
127 | - return (string)$value; |
|
127 | + return (string) $value; |
|
128 | 128 | } |
129 | 129 | |
130 | 130 | /** |
@@ -156,14 +156,14 @@ discard block |
||
156 | 156 | $this->query->each(function($statement) use (&$query) { |
157 | 157 | if (count($statement) == 1) { |
158 | 158 | $query .= $statement[0]; |
159 | - } else { |
|
159 | + }else { |
|
160 | 160 | if ($statement[1] === null) { |
161 | 161 | $query .= $statement[0]; |
162 | - } else { |
|
162 | + }else { |
|
163 | 163 | if (is_numeric($statement[1])) { |
164 | - $query .= $statement[0] . ' ' . $statement[1]; |
|
165 | - } else { |
|
166 | - $query .= $statement[0] . ' "' . $statement[1] . '"'; |
|
164 | + $query .= $statement[0].' '.$statement[1]; |
|
165 | + }else { |
|
166 | + $query .= $statement[0].' "'.$statement[1].'"'; |
|
167 | 167 | } |
168 | 168 | } |
169 | 169 | } |
@@ -297,7 +297,7 @@ discard block |
||
297 | 297 | $key = $message->getMessageId(); |
298 | 298 | break; |
299 | 299 | } |
300 | - return (string)$key; |
|
300 | + return (string) $key; |
|
301 | 301 | } |
302 | 302 | |
303 | 303 | /** |
@@ -345,7 +345,7 @@ discard block |
||
345 | 345 | $extensions = $raw_messages["extensions"][$uid] ?? []; |
346 | 346 | |
347 | 347 | $message = $this->make($uid, $msglist, $header, $content, $flag); |
348 | - foreach($extensions as $key => $extension) { |
|
348 | + foreach ($extensions as $key => $extension) { |
|
349 | 349 | $message->getHeader()->set($key, $extension); |
350 | 350 | } |
351 | 351 | if ($message !== null) { |
@@ -497,7 +497,7 @@ discard block |
||
497 | 497 | $uids = $connection->getUid(); |
498 | 498 | $available_messages = new Collection(); |
499 | 499 | if (is_array($uids)) { |
500 | - foreach ($uids as $id){ |
|
500 | + foreach ($uids as $id) { |
|
501 | 501 | if ($closure($id)) { |
502 | 502 | $available_messages->push($id); |
503 | 503 | } |