@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | $header = new Swift_Mime_Headers_OpenDKIMHeader('DKIM-Signature'); |
80 | 80 | $headerVal = $this->_dkimHandler->getSignatureHeader(); |
81 | 81 | if (!$headerVal) { |
82 | - throw new Swift_SwiftException('OpenDKIM Error: ' . $this->_dkimHandler->getError()); |
|
82 | + throw new Swift_SwiftException('OpenDKIM Error: '.$this->_dkimHandler->getError()); |
|
83 | 83 | } |
84 | 84 | $header->setValue($headerVal); |
85 | 85 | $headers->set($header); |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | OpenDKIM::setOption(OpenDKIM::OPTS_FIXEDTIME, time()); |
113 | 113 | } else { |
114 | 114 | if (!OpenDKIM::setOption(OpenDKIM::OPTS_FIXEDTIME, $this->_signatureTimestamp)) { |
115 | - throw new Swift_SwiftException('Unable to force signature timestamp [' . openssl_error_string() . ']'); |
|
115 | + throw new Swift_SwiftException('Unable to force signature timestamp ['.openssl_error_string().']'); |
|
116 | 116 | } |
117 | 117 | } |
118 | 118 |
@@ -134,7 +134,7 @@ |
||
134 | 134 | $code = $e->getCode(); |
135 | 135 | $this->_logger->add(sprintf('!! %s (code: %s)', $message, $code)); |
136 | 136 | $message .= PHP_EOL; |
137 | - $message .= 'Log data:' . PHP_EOL; |
|
137 | + $message .= 'Log data:'.PHP_EOL; |
|
138 | 138 | $message .= $this->_logger->dump(); |
139 | 139 | $evt->cancelBubble(); |
140 | 140 | throw new Swift_TransportException($message, $code, $e->getPrevious()); |
@@ -25,14 +25,14 @@ |
||
25 | 25 | public function notify(Swift_Mime_Message $message, $address, $result) |
26 | 26 | { |
27 | 27 | if (self::RESULT_PASS === $result) { |
28 | - echo '<div style="color: #fff; background: #006600; padding: 2px; margin: 2px;">' . PHP_EOL; |
|
29 | - echo 'PASS ' . $address . PHP_EOL; |
|
30 | - echo '</div>' . PHP_EOL; |
|
28 | + echo '<div style="color: #fff; background: #006600; padding: 2px; margin: 2px;">'.PHP_EOL; |
|
29 | + echo 'PASS '.$address.PHP_EOL; |
|
30 | + echo '</div>'.PHP_EOL; |
|
31 | 31 | flush(); |
32 | 32 | } else { |
33 | - echo '<div style="color: #fff; background: #880000; padding: 2px; margin: 2px;">' . PHP_EOL; |
|
34 | - echo 'FAIL ' . $address . PHP_EOL; |
|
35 | - echo '</div>' . PHP_EOL; |
|
33 | + echo '<div style="color: #fff; background: #880000; padding: 2px; margin: 2px;">'.PHP_EOL; |
|
34 | + echo 'FAIL '.$address.PHP_EOL; |
|
35 | + echo '</div>'.PHP_EOL; |
|
36 | 36 | flush(); |
37 | 37 | } |
38 | 38 | } |
@@ -260,11 +260,11 @@ |
||
260 | 260 | $host = $this->_host; |
261 | 261 | switch (strtolower($this->_crypto)) { |
262 | 262 | case 'ssl': |
263 | - $host = 'ssl://' . $host; |
|
263 | + $host = 'ssl://'.$host; |
|
264 | 264 | break; |
265 | 265 | |
266 | 266 | case 'tls': |
267 | - $host = 'tls://' . $host; |
|
267 | + $host = 'tls://'.$host; |
|
268 | 268 | break; |
269 | 269 | } |
270 | 270 |
@@ -63,7 +63,7 @@ |
||
63 | 63 | if ( |
64 | 64 | $currentLine !== '' |
65 | 65 | && |
66 | - strlen($currentLine . $encodedChar) > $thisLineLength |
|
66 | + strlen($currentLine.$encodedChar) > $thisLineLength |
|
67 | 67 | ) { |
68 | 68 | $lines[] = ''; |
69 | 69 | $currentLine = &$lines[$lineCount++]; |
@@ -39,11 +39,11 @@ |
||
39 | 39 | $firstLine = ''; |
40 | 40 | |
41 | 41 | if (0 != $firstLineOffset) { |
42 | - $firstLine = substr($encodedString, 0, $maxLineLength - $firstLineOffset) . "\r\n"; |
|
42 | + $firstLine = substr($encodedString, 0, $maxLineLength - $firstLineOffset)."\r\n"; |
|
43 | 43 | $encodedString = substr($encodedString, $maxLineLength - $firstLineOffset); |
44 | 44 | } |
45 | 45 | |
46 | - return $firstLine . trim(chunk_split($encodedString, $maxLineLength, "\r\n")); |
|
46 | + return $firstLine.trim(chunk_split($encodedString, $maxLineLength, "\r\n")); |
|
47 | 47 | } |
48 | 48 | |
49 | 49 | /** |
@@ -198,7 +198,7 @@ |
||
198 | 198 | $to = $start; |
199 | 199 | for (; $this->_currentPos < $end; ++$this->_currentPos) { |
200 | 200 | if (isset($this->_map['i'][$this->_currentPos])) { |
201 | - $ret .= substr($this->_datas, $start, $to - $start) . '?'; |
|
201 | + $ret .= substr($this->_datas, $start, $to - $start).'?'; |
|
202 | 202 | $start = $this->_map['p'][$this->_currentPos]; |
203 | 203 | } else { |
204 | 204 | $to = $this->_map['p'][$this->_currentPos]; |
@@ -51,23 +51,23 @@ discard block |
||
51 | 51 | $prefix = 'Swift_CharacterReader_'; |
52 | 52 | |
53 | 53 | $singleByte = array( |
54 | - 'class' => $prefix . 'GenericFixedWidthReader', |
|
54 | + 'class' => $prefix.'GenericFixedWidthReader', |
|
55 | 55 | 'constructor' => array(1), |
56 | 56 | ); |
57 | 57 | |
58 | 58 | $doubleByte = array( |
59 | - 'class' => $prefix . 'GenericFixedWidthReader', |
|
59 | + 'class' => $prefix.'GenericFixedWidthReader', |
|
60 | 60 | 'constructor' => array(2), |
61 | 61 | ); |
62 | 62 | |
63 | 63 | $fourBytes = array( |
64 | - 'class' => $prefix . 'GenericFixedWidthReader', |
|
64 | + 'class' => $prefix.'GenericFixedWidthReader', |
|
65 | 65 | 'constructor' => array(4), |
66 | 66 | ); |
67 | 67 | |
68 | 68 | // Utf-8 |
69 | 69 | self::$_map['utf-?8'] = array( |
70 | - 'class' => $prefix . 'Utf8Reader', |
|
70 | + 'class' => $prefix.'Utf8Reader', |
|
71 | 71 | 'constructor' => array(), |
72 | 72 | ); |
73 | 73 | |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | { |
106 | 106 | $charset = trim(strtolower($charset)); |
107 | 107 | foreach (self::$_map as $pattern => $spec) { |
108 | - $re = '/^' . $pattern . '$/D'; |
|
108 | + $re = '/^'.$pattern.'$/D'; |
|
109 | 109 | if (preg_match($re, $charset)) { |
110 | 110 | if (!array_key_exists($pattern, self::$_loaded)) { |
111 | 111 | $reflector = new ReflectionClass($spec['class']); |
@@ -67,8 +67,8 @@ discard block |
||
67 | 67 | break; |
68 | 68 | default: |
69 | 69 | throw new Swift_SwiftException( |
70 | - 'Invalid mode [' . $mode . '] used to set nsKey=' . |
|
71 | - $nsKey . ', itemKey=' . $itemKey |
|
70 | + 'Invalid mode ['.$mode.'] used to set nsKey='. |
|
71 | + $nsKey.', itemKey='.$itemKey |
|
72 | 72 | ); |
73 | 73 | } |
74 | 74 | } |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | break; |
102 | 102 | default: |
103 | 103 | throw new Swift_SwiftException( |
104 | - 'Invalid mode [' . $mode . '] used to set nsKey=' . $nsKey . ', itemKey=' . $itemKey |
|
104 | + 'Invalid mode ['.$mode.'] used to set nsKey='.$nsKey.', itemKey='.$itemKey |
|
105 | 105 | ); |
106 | 106 | } |
107 | 107 | } |