@@ -70,36 +70,36 @@ |
||
| 70 | 70 | { |
| 71 | 71 | return [ |
| 72 | 72 | 'DateTime' => [ |
| 73 | - 'string' => function ($value) { |
|
| 73 | + 'string' => function($value) { |
|
| 74 | 74 | return new \DateTime($value); |
| 75 | 75 | } |
| 76 | 76 | ], |
| 77 | 77 | 'dateTime' => [ |
| 78 | - 'string' => function ($value) { |
|
| 78 | + 'string' => function($value) { |
|
| 79 | 79 | return new \DateTime($value); |
| 80 | 80 | } |
| 81 | 81 | ], |
| 82 | 82 | 'date' => [ |
| 83 | - 'string' => function ($value) { |
|
| 83 | + 'string' => function($value) { |
|
| 84 | 84 | return new \DateTime($value); |
| 85 | 85 | } |
| 86 | 86 | ], |
| 87 | 87 | 'time' => [ |
| 88 | - 'string' => function ($value) { |
|
| 88 | + 'string' => function($value) { |
|
| 89 | 89 | return new \DateTime($value); |
| 90 | 90 | } |
| 91 | 91 | ], |
| 92 | 92 | 'ExchangeFormat' => [ |
| 93 | - 'DateTime' => function ($value) { |
|
| 93 | + 'DateTime' => function($value) { |
|
| 94 | 94 | return $value->format('c'); |
| 95 | 95 | }, |
| 96 | - 'dateTime' => function ($value) { |
|
| 96 | + 'dateTime' => function($value) { |
|
| 97 | 97 | return $value->format('c'); |
| 98 | 98 | }, |
| 99 | - 'date' => function ($value) { |
|
| 99 | + 'date' => function($value) { |
|
| 100 | 100 | return $value->format('Y-m-d'); |
| 101 | 101 | }, |
| 102 | - 'time' => function ($value) { |
|
| 102 | + 'time' => function($value) { |
|
| 103 | 103 | return $value->format('H:i:s'); |
| 104 | 104 | } |
| 105 | 105 | ] |
@@ -1,11 +1,11 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -require_once(__DIR__ . "/../vendor/autoload.php"); |
|
| 3 | +require_once(__DIR__."/../vendor/autoload.php"); |
|
| 4 | 4 | |
| 5 | 5 | use Symfony\Component\Console\Application; |
| 6 | 6 | use jamesiarmes\PEWS\Generator\ConvertToPHP; |
| 7 | 7 | |
| 8 | -error_reporting(error_reporting() &~E_NOTICE); |
|
| 8 | +error_reporting(error_reporting() & ~E_NOTICE); |
|
| 9 | 9 | |
| 10 | 10 | $cli = new Application('Convert XSD to PHP classes Command Line Interface', "2.0"); |
| 11 | 11 | $cli->setCatchExceptions(true); |
@@ -23,12 +23,12 @@ |
||
| 23 | 23 | //should have your own way to get it, but just for the sake of example I'm going to show you a way to do that |
| 24 | 24 | |
| 25 | 25 | if (!$_SESSION['token'] && !isset($_GET)) { |
| 26 | - $redirect = $authorizationEndpoint . |
|
| 27 | - '?response_type=code' . |
|
| 28 | - '&client_id=' . urlencode($clientId) . |
|
| 29 | - '&redirect_uri=' . urlencode($redirectUri) . |
|
| 30 | - '&resource=' . urlencode($resource) . |
|
| 31 | - '&scope=' . urlencode('full_access_as_user'); |
|
| 26 | + $redirect = $authorizationEndpoint. |
|
| 27 | + '?response_type=code'. |
|
| 28 | + '&client_id='.urlencode($clientId). |
|
| 29 | + '&redirect_uri='.urlencode($redirectUri). |
|
| 30 | + '&resource='.urlencode($resource). |
|
| 31 | + '&scope='.urlencode('full_access_as_user'); |
|
| 32 | 32 | header("Location: {$redirect}"); |
| 33 | 33 | exit(); |
| 34 | 34 | } |
@@ -114,7 +114,7 @@ |
||
| 114 | 114 | $headers[] = $this->ewsHeaders['timezone']; |
| 115 | 115 | } |
| 116 | 116 | |
| 117 | - $headers = array_filter($headers, function ($header) { |
|
| 117 | + $headers = array_filter($headers, function($header) { |
|
| 118 | 118 | if (!($header instanceof SoapHeader)) { |
| 119 | 119 | return false; |
| 120 | 120 | } |
@@ -434,7 +434,7 @@ |
||
| 434 | 434 | if ($item instanceof Type\ItemIdType) { |
| 435 | 435 | $item = $item->toArray(); |
| 436 | 436 | } |
| 437 | - $item = (array)$item; |
|
| 437 | + $item = (array) $item; |
|
| 438 | 438 | $itemIds[] = array( |
| 439 | 439 | 'Id' => $item['Id'], |
| 440 | 440 | 'ChangeKey' => $item['ChangeKey'] |
@@ -164,6 +164,10 @@ discard block |
||
| 164 | 164 | )); |
| 165 | 165 | } |
| 166 | 166 | |
| 167 | + /** |
|
| 168 | + * @param string $username |
|
| 169 | + * @param string $password |
|
| 170 | + */ |
|
| 167 | 171 | public static function withUsernameAndPassword($server, $username, $password, $options = []) |
| 168 | 172 | { |
| 169 | 173 | return new static(ExchangeWebServices::fromUsernameAndPassword( |
@@ -347,7 +351,7 @@ discard block |
||
| 347 | 351 | |
| 348 | 352 | /** |
| 349 | 353 | * @param $identifier |
| 350 | - * @return Type\BaseFolderType |
|
| 354 | + * @return Type |
|
| 351 | 355 | */ |
| 352 | 356 | public function getFolder($identifier) |
| 353 | 357 | { |
@@ -368,7 +372,7 @@ discard block |
||
| 368 | 372 | * Get a folder by it's distinguishedId |
| 369 | 373 | * |
| 370 | 374 | * @param string $distinguishedId |
| 371 | - * @return Type\BaseFolderType |
|
| 375 | + * @return Type |
|
| 372 | 376 | */ |
| 373 | 377 | public function getFolderByDistinguishedId($distinguishedId) |
| 374 | 378 | { |
@@ -382,7 +386,7 @@ discard block |
||
| 382 | 386 | |
| 383 | 387 | /** |
| 384 | 388 | * @param $folderId |
| 385 | - * @return Type\BaseFolderType |
|
| 389 | + * @return Type |
|
| 386 | 390 | */ |
| 387 | 391 | public function getFolderByFolderId($folderId) |
| 388 | 392 | { |
@@ -468,7 +472,7 @@ discard block |
||
| 468 | 472 | * @param Type\FolderIdType $folderId |
| 469 | 473 | * @param null $syncState |
| 470 | 474 | * @param array $options |
| 471 | - * @return SyncFolderItemsResponseMessageType |
|
| 475 | + * @return Type |
|
| 472 | 476 | */ |
| 473 | 477 | public function listItemChanges($folderId, $syncState = null, $options = array()) |
| 474 | 478 | { |
@@ -2,7 +2,6 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace garethp\ews\Calendar; |
| 4 | 4 | |
| 5 | -use garethp\ews\API\Enumeration\DisposalType; |
|
| 6 | 5 | use garethp\ews\API\Type\CalendarItemType; |
| 7 | 6 | use garethp\ews\API\Type; |
| 8 | 7 | use garethp\ews\API; |
@@ -4,6 +4,10 @@ |
||
| 4 | 4 | |
| 5 | 5 | class ItemUpdateBuilder |
| 6 | 6 | { |
| 7 | + /** |
|
| 8 | + * @param string $itemType |
|
| 9 | + * @param string $uriType |
|
| 10 | + */ |
|
| 7 | 11 | public static function buildUpdateItemChanges($itemType, $uriType, $changes) |
| 8 | 12 | { |
| 9 | 13 | $updateArray = []; |
@@ -137,7 +137,7 @@ |
||
| 137 | 137 | } |
| 138 | 138 | |
| 139 | 139 | /** |
| 140 | - * @param $name |
|
| 140 | + * @param string $name |
|
| 141 | 141 | * @param $value |
| 142 | 142 | * @return null |
| 143 | 143 | */ |
@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | } |
| 116 | 116 | } |
| 117 | 117 | |
| 118 | - throw new \Exception('Property ' . $names[0] . ' does not exist'); |
|
| 118 | + throw new \Exception('Property '.$names[0].' does not exist'); |
|
| 119 | 119 | } |
| 120 | 120 | |
| 121 | 121 | /** |
@@ -130,7 +130,7 @@ discard block |
||
| 130 | 130 | } |
| 131 | 131 | |
| 132 | 132 | if (!$this->exists($name)) { |
| 133 | - throw new \Exception('Property ' . $name . ' does not exist'); |
|
| 133 | + throw new \Exception('Property '.$name.' does not exist'); |
|
| 134 | 134 | } |
| 135 | 135 | |
| 136 | 136 | return $name; |
@@ -435,7 +435,7 @@ |
||
| 435 | 435 | |
| 436 | 436 | /** |
| 437 | 437 | * @param Message\BaseResponseMessageType $response |
| 438 | - * @param $code |
|
| 438 | + * @param integer $code |
|
| 439 | 439 | * @throws ExchangeException |
| 440 | 440 | * @throws NoResponseReturnedException |
| 441 | 441 | * @throws ServiceUnavailableException |
@@ -248,7 +248,7 @@ discard block |
||
| 248 | 248 | |
| 249 | 249 | protected function createClient($server, $auth, $options) |
| 250 | 250 | { |
| 251 | - $location = 'https://' . $this->cleanServerUrl($server) . '/EWS/Exchange.asmx'; |
|
| 251 | + $location = 'https://'.$this->cleanServerUrl($server).'/EWS/Exchange.asmx'; |
|
| 252 | 252 | |
| 253 | 253 | $options = array_replace_recursive([ |
| 254 | 254 | 'version' => self::VERSION_2007, |
@@ -264,7 +264,7 @@ discard block |
||
| 264 | 264 | $this->soap = new NTLMSoapClient( |
| 265 | 265 | $location, |
| 266 | 266 | $auth, |
| 267 | - dirname(__FILE__) . '/../../Resources/wsdl/services.wsdl', |
|
| 267 | + dirname(__FILE__).'/../../Resources/wsdl/services.wsdl', |
|
| 268 | 268 | $options |
| 269 | 269 | ); |
| 270 | 270 | |
@@ -337,7 +337,7 @@ discard block |
||
| 337 | 337 | |
| 338 | 338 | $server = $url['host']; |
| 339 | 339 | if (isset($url['port'])) { |
| 340 | - $server .= ':' . $url['port']; |
|
| 340 | + $server .= ':'.$url['port']; |
|
| 341 | 341 | } |
| 342 | 342 | |
| 343 | 343 | if (isset($url['path'])) { |
@@ -454,7 +454,7 @@ discard block |
||
| 454 | 454 | } |
| 455 | 455 | |
| 456 | 456 | if ($code >= 300) { |
| 457 | - throw new ExchangeException('SOAP client returned status of ' . $code, $code); |
|
| 457 | + throw new ExchangeException('SOAP client returned status of '.$code, $code); |
|
| 458 | 458 | } |
| 459 | 459 | |
| 460 | 460 | if (empty($response) || empty($response->getNonNullResponseMessages())) { |
@@ -467,7 +467,7 @@ discard block |
||
| 467 | 467 | if (self::$middlewareStack === false) { |
| 468 | 468 | self::$middlewareStack = [ |
| 469 | 469 | //Transform an objcet of type Type to an XML Object |
| 470 | - function ($name, $request, $options) { |
|
| 470 | + function($name, $request, $options) { |
|
| 471 | 471 | if ($request instanceof Type) { |
| 472 | 472 | $request = $request->toXmlObject(); |
| 473 | 473 | } |
@@ -476,7 +476,7 @@ discard block |
||
| 476 | 476 | }, |
| 477 | 477 | |
| 478 | 478 | //The SyncScope option isn't available for Exchange 2007 SP1 and below |
| 479 | - function ($name, $request, $options) { |
|
| 479 | + function($name, $request, $options) { |
|
| 480 | 480 | $version2007SP1 = ($options['version'] == ExchangeWebServices::VERSION_2007 |
| 481 | 481 | || $options['version'] == ExchangeWebServices::VERSION_2007_SP1); |
| 482 | 482 | if ($name == "SyncFolderItems" && $version2007SP1 && isset($request->SyncScope)) { |
@@ -125,7 +125,7 @@ |
||
| 125 | 125 | } |
| 126 | 126 | |
| 127 | 127 | if (is_array($property)) { |
| 128 | - $property = array_map(function ($property) { |
|
| 128 | + $property = array_map(function($property) { |
|
| 129 | 129 | if ($property instanceof Type) { |
| 130 | 130 | return $property->toXmlObject(); |
| 131 | 131 | } |