@@ -623,7 +623,7 @@ discard block |
||
623 | 623 | * @param InternalOrderByInfo $orderBy The orderBy information |
624 | 624 | * @param int $top The top count |
625 | 625 | * @param int $skip The skip count |
626 | - * @param InternalSkipTokenInfo $skipToken The skip token |
|
626 | + * @param SkipTokenInfo $skipToken The skip token |
|
627 | 627 | * |
628 | 628 | * @return QueryResult |
629 | 629 | */ |
@@ -826,7 +826,7 @@ discard block |
||
826 | 826 | |
827 | 827 | /** |
828 | 828 | * @param ResourceSet $resourceSet The entity set containing the entity to fetch |
829 | - * @param object $sourceEntityInstance The source entity instance |
|
829 | + * @param KeyDescriptor $sourceEntityInstance The source entity instance |
|
830 | 830 | * @param object $data The New data for the entity instance. |
831 | 831 | * |
832 | 832 | * returns object|null returns the newly created model if sucessful or null if model creation failed. |
@@ -222,7 +222,7 @@ discard block |
||
222 | 222 | */ |
223 | 223 | protected function executePut() |
224 | 224 | { |
225 | - return $this->executeBase(function ($uriProcessor, $segment) { |
|
225 | + return $this->executeBase(function($uriProcessor, $segment) { |
|
226 | 226 | $requestMethod = $uriProcessor->getService()->getOperationContext()->incomingRequest()->getMethod(); |
227 | 227 | $resourceSet = $segment->getTargetResourceSetWrapper(); |
228 | 228 | $keyDescriptor = $segment->getKeyDescriptor(); |
@@ -255,7 +255,7 @@ discard block |
||
255 | 255 | */ |
256 | 256 | protected function executeDelete() |
257 | 257 | { |
258 | - return $this->executeBase(function ($uriProcessor, $segment) { |
|
258 | + return $this->executeBase(function($uriProcessor, $segment) { |
|
259 | 259 | $requestMethod = $uriProcessor->getService()->getOperationContext()->incomingRequest()->getMethod(); |
260 | 260 | $resourceSet = $segment->getTargetResourceSetWrapper(); |
261 | 261 | $keyDescriptor = $segment->getKeyDescriptor(); |
@@ -424,7 +424,7 @@ discard block |
||
424 | 424 | //TODO: why are these null? see #98 |
425 | 425 | null, // $orderby |
426 | 426 | null, // $top |
427 | - null, // $skip |
|
427 | + null, // $skip |
|
428 | 428 | $skipToken |
429 | 429 | ); |
430 | 430 |