@@ -106,7 +106,7 @@ discard block |
||
| 106 | 106 | $args[0] = $args[0]->toXmlObject(); |
| 107 | 107 | } |
| 108 | 108 | |
| 109 | - $headers = array ( |
|
| 109 | + $headers = array( |
|
| 110 | 110 | $this->ewsHeaders['version'], |
| 111 | 111 | $this->ewsHeaders['impersonation'], |
| 112 | 112 | ); |
@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | $headers[] = $this->ewsHeaders['timezone']; |
| 116 | 116 | } |
| 117 | 117 | |
| 118 | - $headers = array_filter($headers, function ($header) { |
|
| 118 | + $headers = array_filter($headers, function($header) { |
|
| 119 | 119 | if (!($header instanceof SoapHeader)) { |
| 120 | 120 | return false; |
| 121 | 121 | } |
@@ -150,7 +150,7 @@ discard block |
||
| 150 | 150 | if (!empty($options['version'])) { |
| 151 | 151 | $this->ewsHeaders['version'] = new SoapHeader( |
| 152 | 152 | 'http://schemas.microsoft.com/exchange/services/2006/types', |
| 153 | - 'RequestServerVersion Version="' . $options['version'] . '"' |
|
| 153 | + 'RequestServerVersion Version="'.$options['version'].'"' |
|
| 154 | 154 | ); |
| 155 | 155 | } |
| 156 | 156 | |
@@ -231,7 +231,7 @@ discard block |
||
| 231 | 231 | */ |
| 232 | 232 | public function __getLastRequestHeaders() |
| 233 | 233 | { |
| 234 | - return implode('n', $this->__last_request_headers) . "\n"; |
|
| 234 | + return implode('n', $this->__last_request_headers)."\n"; |
|
| 235 | 235 | } |
| 236 | 236 | |
| 237 | 237 | /** |