@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | /** |
108 | 108 | * Get the date at which this message was created. |
109 | 109 | * |
110 | - * @return int |
|
110 | + * @return string |
|
111 | 111 | */ |
112 | 112 | public function getDate() |
113 | 113 | { |
@@ -199,7 +199,7 @@ discard block |
||
199 | 199 | * If $name is passed and the first parameter is a string, this name will be |
200 | 200 | * associated with the address. |
201 | 201 | * |
202 | - * @param string|array $addresses |
|
202 | + * @param string $addresses |
|
203 | 203 | * @param string $name optional |
204 | 204 | * |
205 | 205 | * @return Swift_Mime_SimpleMessage |
@@ -220,7 +220,7 @@ discard block |
||
220 | 220 | /** |
221 | 221 | * Get the from address of this message. |
222 | 222 | * |
223 | - * @return mixed |
|
223 | + * @return string |
|
224 | 224 | */ |
225 | 225 | public function getFrom() |
226 | 226 | { |
@@ -253,7 +253,7 @@ discard block |
||
253 | 253 | * If $name is passed and the first parameter is a string, this name will be |
254 | 254 | * associated with the address. |
255 | 255 | * |
256 | - * @param mixed $addresses |
|
256 | + * @param string $addresses |
|
257 | 257 | * @param string $name optional |
258 | 258 | * |
259 | 259 | * @return Swift_Mime_SimpleMessage |
@@ -308,7 +308,7 @@ discard block |
||
308 | 308 | * If $name is passed and the first parameter is a string, this name will be |
309 | 309 | * associated with the address. |
310 | 310 | * |
311 | - * @param mixed $addresses |
|
311 | + * @param string $addresses |
|
312 | 312 | * @param string $name optional |
313 | 313 | * |
314 | 314 | * @return Swift_Mime_SimpleMessage |
@@ -329,7 +329,7 @@ discard block |
||
329 | 329 | /** |
330 | 330 | * Get the To addresses of this message. |
331 | 331 | * |
332 | - * @return array |
|
332 | + * @return string |
|
333 | 333 | */ |
334 | 334 | public function getTo() |
335 | 335 | { |
@@ -360,7 +360,7 @@ discard block |
||
360 | 360 | * If $name is passed and the first parameter is a string, this name will be |
361 | 361 | * associated with the address. |
362 | 362 | * |
363 | - * @param mixed $addresses |
|
363 | + * @param string $addresses |
|
364 | 364 | * @param string $name optional |
365 | 365 | * |
366 | 366 | * @return Swift_Mime_SimpleMessage |
@@ -381,7 +381,7 @@ discard block |
||
381 | 381 | /** |
382 | 382 | * Get the Cc address of this message. |
383 | 383 | * |
384 | - * @return array |
|
384 | + * @return string |
|
385 | 385 | */ |
386 | 386 | public function getCc() |
387 | 387 | { |
@@ -412,7 +412,7 @@ discard block |
||
412 | 412 | * If $name is passed and the first parameter is a string, this name will be |
413 | 413 | * associated with the address. |
414 | 414 | * |
415 | - * @param mixed $addresses |
|
415 | + * @param string $addresses |
|
416 | 416 | * @param string $name optional |
417 | 417 | * |
418 | 418 | * @return Swift_Mime_SimpleMessage |
@@ -433,7 +433,7 @@ discard block |
||
433 | 433 | /** |
434 | 434 | * Get the Bcc addresses of this message. |
435 | 435 | * |
436 | - * @return array |
|
436 | + * @return string |
|
437 | 437 | */ |
438 | 438 | public function getBcc() |
439 | 439 | { |
@@ -560,7 +560,7 @@ |
||
560 | 560 | { |
561 | 561 | $this->attach($entity); |
562 | 562 | |
563 | - return 'cid:' . $entity->getId(); |
|
563 | + return 'cid:'.$entity->getId(); |
|
564 | 564 | } |
565 | 565 | |
566 | 566 | /** |
@@ -435,6 +435,9 @@ |
||
435 | 435 | |
436 | 436 | /* Private helpers */ |
437 | 437 | |
438 | + /** |
|
439 | + * @param string $header |
|
440 | + */ |
|
438 | 441 | protected function _addHeader($header) |
439 | 442 | { |
440 | 443 | switch ($this->_canon) { |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | { |
146 | 146 | $this->_privateKey = $privateKey; |
147 | 147 | $this->_domainName = $domainName; |
148 | - $this->_signerIdentity = '@' . $domainName; |
|
148 | + $this->_signerIdentity = '@'.$domainName; |
|
149 | 149 | $this->_selector = $selector; |
150 | 150 | } |
151 | 151 | |
@@ -425,7 +425,7 @@ discard block |
||
425 | 425 | $params = array('a' => $this->_hashAlgorithm, 'b' => chunk_split(base64_encode($this->_getEncryptedHash()), 73, ' '), 'c' => $this->_canon, 'd' => $this->_domainName, 'h' => implode(': ', $this->_signedHeaders), 'q' => 'dns', 's' => $this->_selector); |
426 | 426 | $string = ''; |
427 | 427 | foreach ($params as $k => $v) { |
428 | - $string .= $k . '=' . $v . '; '; |
|
428 | + $string .= $k.'='.$v.'; '; |
|
429 | 429 | } |
430 | 430 | $string = trim($string); |
431 | 431 | $headers->addTextHeader('DomainKey-Signature', $string); |
@@ -444,7 +444,7 @@ discard block |
||
444 | 444 | $name = Swift::strtolowerWithStaticCache(trim($exploded[0])); |
445 | 445 | $value = str_replace("\r\n", '', $exploded[1]); |
446 | 446 | $value = preg_replace("/[ \t][ \t]+/", ' ', $value); |
447 | - $header = $name . ':' . trim($value) . "\r\n"; |
|
447 | + $header = $name.':'.trim($value)."\r\n"; |
|
448 | 448 | case 'simple': |
449 | 449 | // Nothing to do |
450 | 450 | } |
@@ -544,11 +544,11 @@ discard block |
||
544 | 544 | $signature = ''; |
545 | 545 | $pkeyId = openssl_get_privatekey($this->_privateKey); |
546 | 546 | if (!$pkeyId) { |
547 | - throw new Swift_SwiftException('Unable to load DomainKey Private Key [' . openssl_error_string() . ']'); |
|
547 | + throw new Swift_SwiftException('Unable to load DomainKey Private Key ['.openssl_error_string().']'); |
|
548 | 548 | } |
549 | 549 | if (openssl_sign($this->_canonData, $signature, $pkeyId, OPENSSL_ALGO_SHA1)) { |
550 | 550 | return $signature; |
551 | 551 | } |
552 | - throw new Swift_SwiftException('Unable to sign DomainKey Hash [' . openssl_error_string() . ']'); |
|
552 | + throw new Swift_SwiftException('Unable to sign DomainKey Hash ['.openssl_error_string().']'); |
|
553 | 553 | } |
554 | 554 | } |
@@ -30,6 +30,6 @@ |
||
30 | 30 | */ |
31 | 31 | public function isValidSimpleWrapper($email) |
32 | 32 | { |
33 | - return (boolean)preg_match('/^(.*<?)(.*)@(.*)(>?)$/', $email); |
|
33 | + return (boolean) preg_match('/^(.*<?)(.*)@(.*)(>?)$/', $email); |
|
34 | 34 | } |
35 | 35 | } |
@@ -435,6 +435,9 @@ |
||
435 | 435 | |
436 | 436 | /* Private helpers */ |
437 | 437 | |
438 | + /** |
|
439 | + * @param string $header |
|
440 | + */ |
|
438 | 441 | protected function _addHeader($header) |
439 | 442 | { |
440 | 443 | switch ($this->_canon) { |
@@ -201,7 +201,7 @@ discard block |
||
201 | 201 | { |
202 | 202 | $this->_privateKey = $privateKey; |
203 | 203 | $this->_domainName = $domainName; |
204 | - $this->_signerIdentity = '@' . $domainName; |
|
204 | + $this->_signerIdentity = '@'.$domainName; |
|
205 | 205 | $this->_selector = $selector; |
206 | 206 | } |
207 | 207 | |
@@ -549,7 +549,7 @@ discard block |
||
549 | 549 | // Prepare the DKIM-Signature |
550 | 550 | $params = array('v' => '1', 'a' => $this->_hashAlgorithm, 'bh' => base64_encode($this->_bodyHash), 'd' => $this->_domainName, 'h' => implode(': ', $this->_signedHeaders), 'i' => $this->_signerIdentity, 's' => $this->_selector); |
551 | 551 | if ($this->_bodyCanon != 'simple') { |
552 | - $params['c'] = $this->_headerCanon . '/' . $this->_bodyCanon; |
|
552 | + $params['c'] = $this->_headerCanon.'/'.$this->_bodyCanon; |
|
553 | 553 | } elseif ($this->_headerCanon != 'simple') { |
554 | 554 | $params['c'] = $this->_headerCanon; |
555 | 555 | } |
@@ -574,19 +574,19 @@ discard block |
||
574 | 574 | } |
575 | 575 | $string = ''; |
576 | 576 | foreach ($params as $k => $v) { |
577 | - $string .= $k . '=' . $v . '; '; |
|
577 | + $string .= $k.'='.$v.'; '; |
|
578 | 578 | } |
579 | 579 | $string = trim($string); |
580 | 580 | $headers->addTextHeader('DKIM-Signature', $string); |
581 | 581 | // Add the last DKIM-Signature |
582 | 582 | $tmp = $headers->getAll('DKIM-Signature'); |
583 | 583 | $this->_dkimHeader = end($tmp); |
584 | - $this->_addHeader(trim($this->_dkimHeader->toString()) . "\r\n b=", true); |
|
584 | + $this->_addHeader(trim($this->_dkimHeader->toString())."\r\n b=", true); |
|
585 | 585 | $this->_endOfHeaders(); |
586 | 586 | if ($this->_debugHeaders) { |
587 | 587 | $headers->addTextHeader('X-DebugHash', base64_encode($this->_headerHash)); |
588 | 588 | } |
589 | - $this->_dkimHeader->setValue($string . ' b=' . trim(chunk_split(base64_encode($this->_getEncryptedHash()), 73, ' '))); |
|
589 | + $this->_dkimHeader->setValue($string.' b='.trim(chunk_split(base64_encode($this->_getEncryptedHash()), 73, ' '))); |
|
590 | 590 | |
591 | 591 | return $this; |
592 | 592 | } |
@@ -602,7 +602,7 @@ discard block |
||
602 | 602 | $name = Swift::strtolowerWithStaticCache(trim($exploded[0])); |
603 | 603 | $value = str_replace("\r\n", '', $exploded[1]); |
604 | 604 | $value = preg_replace("/[ \t][ \t]+/", ' ', $value); |
605 | - $header = $name . ':' . trim($value) . ($is_sig ? '' : "\r\n"); |
|
605 | + $header = $name.':'.trim($value).($is_sig ? '' : "\r\n"); |
|
606 | 606 | case 'simple': |
607 | 607 | // Nothing to do |
608 | 608 | } |
@@ -723,11 +723,11 @@ discard block |
||
723 | 723 | } |
724 | 724 | $pkeyId = openssl_get_privatekey($this->_privateKey); |
725 | 725 | if (!$pkeyId) { |
726 | - throw new Swift_SwiftException('Unable to load DKIM Private Key [' . openssl_error_string() . ']'); |
|
726 | + throw new Swift_SwiftException('Unable to load DKIM Private Key ['.openssl_error_string().']'); |
|
727 | 727 | } |
728 | 728 | if (openssl_sign($this->_headerCanonData, $signature, $pkeyId, $algorithm)) { |
729 | 729 | return $signature; |
730 | 730 | } |
731 | - throw new Swift_SwiftException('Unable to sign DKIM Hash [' . openssl_error_string() . ']'); |
|
731 | + throw new Swift_SwiftException('Unable to sign DKIM Hash ['.openssl_error_string().']'); |
|
732 | 732 | } |
733 | 733 | } |
@@ -189,7 +189,7 @@ |
||
189 | 189 | /** |
190 | 190 | * Set the nesting level of this entity |
191 | 191 | * |
192 | - * @param $level |
|
192 | + * @param integer $level |
|
193 | 193 | */ |
194 | 194 | protected function _setNestingLevel($level) |
195 | 195 | { |
@@ -810,6 +810,9 @@ |
||
810 | 810 | } |
811 | 811 | } |
812 | 812 | |
813 | + /** |
|
814 | + * @param integer $level |
|
815 | + */ |
|
813 | 816 | private function _setNestingLevel($level) |
814 | 817 | { |
815 | 818 | $this->_nestingLevel = $level; |
@@ -465,7 +465,7 @@ discard block |
||
465 | 465 | public function getBoundary() |
466 | 466 | { |
467 | 467 | if (!isset($this->_boundary)) { |
468 | - $this->_boundary = '_=_swift_v5_' . time() . '_' . md5(getmypid() . mt_rand() . uniqid('', true)) . '_=_'; |
|
468 | + $this->_boundary = '_=_swift_v5_'.time().'_'.md5(getmypid().mt_rand().uniqid('', true)).'_=_'; |
|
469 | 469 | } |
470 | 470 | |
471 | 471 | return $this->_boundary; |
@@ -536,7 +536,7 @@ discard block |
||
536 | 536 | if ($this->_cache->hasKey($this->_cacheKey, 'body')) { |
537 | 537 | $body = $this->_cache->getString($this->_cacheKey, 'body'); |
538 | 538 | } else { |
539 | - $body = "\r\n" . $this->_encoder->encodeString($this->getBody(), 0, $this->getMaxLineLength()); |
|
539 | + $body = "\r\n".$this->_encoder->encodeString($this->getBody(), 0, $this->getMaxLineLength()); |
|
540 | 540 | $this->_cache->setString($this->_cacheKey, 'body', $body, Swift_KeyCache::MODE_WRITE); |
541 | 541 | } |
542 | 542 | $string .= $body; |
@@ -544,10 +544,10 @@ discard block |
||
544 | 544 | |
545 | 545 | if (!empty($this->_immediateChildren)) { |
546 | 546 | foreach ($this->_immediateChildren as $child) { |
547 | - $string .= "\r\n\r\n--" . $this->getBoundary() . "\r\n"; |
|
547 | + $string .= "\r\n\r\n--".$this->getBoundary()."\r\n"; |
|
548 | 548 | $string .= $child->toString(); |
549 | 549 | } |
550 | - $string .= "\r\n\r\n--" . $this->getBoundary() . "--\r\n"; |
|
550 | + $string .= "\r\n\r\n--".$this->getBoundary()."--\r\n"; |
|
551 | 551 | } |
552 | 552 | |
553 | 553 | return $string; |
@@ -614,10 +614,10 @@ discard block |
||
614 | 614 | |
615 | 615 | if (!empty($this->_immediateChildren)) { |
616 | 616 | foreach ($this->_immediateChildren as $child) { |
617 | - $is->write("\r\n\r\n--" . $this->getBoundary() . "\r\n"); |
|
617 | + $is->write("\r\n\r\n--".$this->getBoundary()."\r\n"); |
|
618 | 618 | $child->toByteStream($is); |
619 | 619 | } |
620 | - $is->write("\r\n\r\n--" . $this->getBoundary() . "--\r\n"); |
|
620 | + $is->write("\r\n\r\n--".$this->getBoundary()."--\r\n"); |
|
621 | 621 | } |
622 | 622 | } |
623 | 623 | |
@@ -746,14 +746,14 @@ discard block |
||
746 | 746 | */ |
747 | 747 | protected function getRandomId() |
748 | 748 | { |
749 | - $idLeft = md5(getmypid() . '.' . time() . '.' . uniqid(mt_rand(), true)); |
|
749 | + $idLeft = md5(getmypid().'.'.time().'.'.uniqid(mt_rand(), true)); |
|
750 | 750 | $idRight = !empty($_SERVER['SERVER_NAME']) ? $_SERVER['SERVER_NAME'] : 'swift.generated'; |
751 | - $id = $idLeft . '@' . $idRight; |
|
751 | + $id = $idLeft.'@'.$idRight; |
|
752 | 752 | |
753 | 753 | try { |
754 | 754 | $this->_assertValidId($id); |
755 | 755 | } catch (Swift_RfcComplianceException $e) { |
756 | - $id = $idLeft . '@swift.generated'; |
|
756 | + $id = $idLeft.'@swift.generated'; |
|
757 | 757 | } |
758 | 758 | |
759 | 759 | return $id; |
@@ -766,7 +766,7 @@ discard block |
||
766 | 766 | */ |
767 | 767 | private function _generateNewCacheKey() |
768 | 768 | { |
769 | - return md5(uniqid(getmypid() . mt_rand(), true)); |
|
769 | + return md5(uniqid(getmypid().mt_rand(), true)); |
|
770 | 770 | } |
771 | 771 | |
772 | 772 | private function _readStream(Swift_OutputByteStream $os) |
@@ -849,10 +849,10 @@ discard block |
||
849 | 849 | $lowercaseType = Swift::strtolowerWithStaticCache($child->getContentType()); |
850 | 850 | |
851 | 851 | if (isset($filter[$realLevel]) && isset($filter[$realLevel][$lowercaseType])) { |
852 | - return (int)$filter[$realLevel][$lowercaseType]; |
|
852 | + return (int) $filter[$realLevel][$lowercaseType]; |
|
853 | 853 | } |
854 | 854 | |
855 | - return (int)$realLevel; |
|
855 | + return (int) $realLevel; |
|
856 | 856 | } |
857 | 857 | |
858 | 858 | /** |
@@ -948,7 +948,7 @@ discard block |
||
948 | 948 | private function _assertValidId($id) |
949 | 949 | { |
950 | 950 | if ($this->_emailValidator->isValidWrapper($id) === false) { |
951 | - throw new Swift_RfcComplianceException('Invalid ID given <' . $id . '>'); |
|
951 | + throw new Swift_RfcComplianceException('Invalid ID given <'.$id.'>'); |
|
952 | 952 | } |
953 | 953 | } |
954 | 954 |
@@ -77,9 +77,9 @@ |
||
77 | 77 | } |
78 | 78 | |
79 | 79 | $count = ( |
80 | - count((array)$message->getTo()) |
|
81 | - + count((array)$message->getCc()) |
|
82 | - + count((array)$message->getBcc()) |
|
80 | + count((array) $message->getTo()) |
|
81 | + + count((array) $message->getCc()) |
|
82 | + + count((array) $message->getBcc()) |
|
83 | 83 | ); |
84 | 84 | |
85 | 85 | return $count; |
@@ -111,7 +111,7 @@ |
||
111 | 111 | if ($i !== null) { |
112 | 112 | $tree[-1] = min(count($replace) - 1, $i); |
113 | 113 | $tree[-2] = $last_size; |
114 | - $this->_treeMaxLen = (int)$size; |
|
114 | + $this->_treeMaxLen = (int) $size; |
|
115 | 115 | } |
116 | 116 | foreach ($replace as $rep) { |
117 | 117 | if (!is_array($rep)) { |
@@ -8,17 +8,17 @@ |
||
8 | 8 | * file that was distributed with this source code. |
9 | 9 | */ |
10 | 10 | |
11 | -require __DIR__ . '/classes/Swift.php'; |
|
11 | +require __DIR__.'/classes/Swift.php'; |
|
12 | 12 | |
13 | 13 | Swift::registerAutoload( |
14 | - function () { |
|
14 | + function() { |
|
15 | 15 | // Load in dependency maps |
16 | - require __DIR__ . '/dependency_maps/cache_deps.php'; |
|
17 | - require __DIR__ . '/dependency_maps/mime_deps.php'; |
|
18 | - require __DIR__ . '/dependency_maps/message_deps.php'; |
|
19 | - require __DIR__ . '/dependency_maps/transport_deps.php'; |
|
16 | + require __DIR__.'/dependency_maps/cache_deps.php'; |
|
17 | + require __DIR__.'/dependency_maps/mime_deps.php'; |
|
18 | + require __DIR__.'/dependency_maps/message_deps.php'; |
|
19 | + require __DIR__.'/dependency_maps/transport_deps.php'; |
|
20 | 20 | |
21 | 21 | // Load in global library preferences |
22 | - require __DIR__ . '/preferences.php'; |
|
22 | + require __DIR__.'/preferences.php'; |
|
23 | 23 | } |
24 | 24 | ); |