Completed
Push — master ( 64f90f...31bc6f )
by Gareth
03:13
created
src/API.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
         $server,
199 199
         $username,
200 200
         $password,
201
-        $options = [ ]
201
+        $options = []
202 202
     ) {
203 203
         $this->setClient(ExchangeWebServices::fromUsernameAndPassword(
204 204
             $server,
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
         ));
209 209
     }
210 210
 
211
-    public static function withUsernameAndPassword($server, $username, $password, $options = [ ])
211
+    public static function withUsernameAndPassword($server, $username, $password, $options = [])
212 212
     {
213 213
         return new static(ExchangeWebServices::fromUsernameAndPassword(
214 214
             $server,
@@ -218,7 +218,7 @@  discard block
 block discarded – undo
218 218
         ));
219 219
     }
220 220
 
221
-    public static function withCallbackToken($server, $token, $options = [ ])
221
+    public static function withCallbackToken($server, $token, $options = [])
222 222
     {
223 223
         return new static(ExchangeWebServices::fromCallbackToken(
224 224
             $server,
@@ -578,7 +578,7 @@  discard block
 block discarded – undo
578 578
     {
579 579
         $result = $this->getClient()->ConvertId(array(
580 580
             'DestinationFormat' => $destinationType,
581
-            'SourceIds' => array (
581
+            'SourceIds' => array(
582 582
                 'AlternateId' => array(
583 583
                     'Format' => $fromType,
584 584
                     'Id' => $itemId->getId(),
Please login to merge, or discard this patch.