@@ -629,7 +629,7 @@ discard block |
||
629 | 629 | * @param InternalOrderByInfo $orderBy The orderBy information |
630 | 630 | * @param int $top The top count |
631 | 631 | * @param int $skip The skip count |
632 | - * @param InternalSkipTokenInfo $skipToken The skip token |
|
632 | + * @param SkipTokenInfo $skipToken The skip token |
|
633 | 633 | * |
634 | 634 | * @return QueryResult |
635 | 635 | */ |
@@ -832,7 +832,7 @@ discard block |
||
832 | 832 | |
833 | 833 | /** |
834 | 834 | * @param ResourceSet $resourceSet The entity set containing the entity to fetch |
835 | - * @param object $sourceEntityInstance The source entity instance |
|
835 | + * @param KeyDescriptor $sourceEntityInstance The source entity instance |
|
836 | 836 | * @param object $data The New data for the entity instance. |
837 | 837 | * |
838 | 838 | * returns object|null returns the newly created model if successful, or null if model creation failed. |
@@ -185,7 +185,7 @@ discard block |
||
185 | 185 | */ |
186 | 186 | protected function executePut() |
187 | 187 | { |
188 | - $this->executeBase(function ($uriProcessor, $segment) { |
|
188 | + $this->executeBase(function($uriProcessor, $segment) { |
|
189 | 189 | $requestMethod = $uriProcessor->getService()->getOperationContext()->incomingRequest()->getMethod(); |
190 | 190 | $resourceSet = $segment->getTargetResourceSetWrapper(); |
191 | 191 | $keyDescriptor = $segment->getKeyDescriptor(); |
@@ -218,7 +218,7 @@ discard block |
||
218 | 218 | */ |
219 | 219 | protected function executeDelete() |
220 | 220 | { |
221 | - $this->executeBase(function ($uriProcessor, $segment) { |
|
221 | + $this->executeBase(function($uriProcessor, $segment) { |
|
222 | 222 | $requestMethod = $uriProcessor->getService()->getOperationContext()->incomingRequest()->getMethod(); |
223 | 223 | $resourceSet = $segment->getTargetResourceSetWrapper(); |
224 | 224 | $keyDescriptor = $segment->getKeyDescriptor(); |
@@ -387,7 +387,7 @@ discard block |
||
387 | 387 | //TODO: why are these null? see #98 |
388 | 388 | null, // $orderby |
389 | 389 | null, // $top |
390 | - null, // $skip |
|
390 | + null, // $skip |
|
391 | 391 | $skipToken |
392 | 392 | ); |
393 | 393 |