@@ -222,7 +222,7 @@ discard block |
||
222 | 222 | $server, |
223 | 223 | $username, |
224 | 224 | $password, |
225 | - $options = [ ] |
|
225 | + $options = [] |
|
226 | 226 | ) { |
227 | 227 | $this->setClient(ExchangeWebServices::fromUsernameAndPassword( |
228 | 228 | $server, |
@@ -232,7 +232,7 @@ discard block |
||
232 | 232 | )); |
233 | 233 | } |
234 | 234 | |
235 | - public static function withUsernameAndPassword($server, $username, $password, $options = [ ]) |
|
235 | + public static function withUsernameAndPassword($server, $username, $password, $options = []) |
|
236 | 236 | { |
237 | 237 | return new static(ExchangeWebServices::fromUsernameAndPassword( |
238 | 238 | $server, |
@@ -242,7 +242,7 @@ discard block |
||
242 | 242 | )); |
243 | 243 | } |
244 | 244 | |
245 | - public static function withCallbackToken($server, $token, $options = [ ]) |
|
245 | + public static function withCallbackToken($server, $token, $options = []) |
|
246 | 246 | { |
247 | 247 | return new static(ExchangeWebServices::fromCallbackToken( |
248 | 248 | $server, |
@@ -392,7 +392,7 @@ discard block |
||
392 | 392 | |
393 | 393 | $newValue = []; |
394 | 394 | foreach ($value[$fieldKey]['Entry'] as $key => $updateValue) { |
395 | - $newValue[] = [$fieldKey => ['Entry' => ['Key' => $entryKey, $key => $updateValue ]]]; |
|
395 | + $newValue[] = [$fieldKey => ['Entry' => ['Key' => $entryKey, $key => $updateValue]]]; |
|
396 | 396 | } |
397 | 397 | |
398 | 398 | $value = $newValue; |
@@ -661,7 +661,7 @@ discard block |
||
661 | 661 | { |
662 | 662 | $result = $this->getClient()->ConvertId(array( |
663 | 663 | 'DestinationFormat' => $destinationType, |
664 | - 'SourceIds' => array ( |
|
664 | + 'SourceIds' => array( |
|
665 | 665 | 'AlternateId' => array( |
666 | 666 | 'Format' => $fromType, |
667 | 667 | 'Id' => $itemId->getId(), |