@@ -208,7 +208,7 @@ discard block |
||
208 | 208 | */ |
209 | 209 | protected function executePut() |
210 | 210 | { |
211 | - return $this->executeBase(function ($uriProcessor, $segment) { |
|
211 | + return $this->executeBase(function($uriProcessor, $segment) { |
|
212 | 212 | $requestMethod = $uriProcessor->getService()->getOperationContext()->incomingRequest()->getMethod(); |
213 | 213 | $resourceSet = $segment->getTargetResourceSetWrapper(); |
214 | 214 | $keyDescriptor = $segment->getKeyDescriptor(); |
@@ -231,7 +231,7 @@ discard block |
||
231 | 231 | */ |
232 | 232 | protected function executeDelete() |
233 | 233 | { |
234 | - return $this->executeBase(function ($uriProcessor, $segment) { |
|
234 | + return $this->executeBase(function($uriProcessor, $segment) { |
|
235 | 235 | $requestMethod = $uriProcessor->getService()->getOperationContext()->incomingRequest()->getMethod(); |
236 | 236 | $resourceSet = $segment->getTargetResourceSetWrapper(); |
237 | 237 | $keyDescriptor = $segment->getKeyDescriptor(); |
@@ -394,7 +394,7 @@ |
||
394 | 394 | |
395 | 395 | /** |
396 | 396 | * @param $result |
397 | - * @param $expandedProjectionNode |
|
397 | + * @param ExpandedProjectionNode $expandedProjectionNode |
|
398 | 398 | * |
399 | 399 | * @throws InvalidOperationException |
400 | 400 | */ |
@@ -400,7 +400,7 @@ |
||
400 | 400 | $this->_topLevelComparisonFunction = $this->_comparisonFunctions[0]; |
401 | 401 | } else { |
402 | 402 | $funcList = $this->_comparisonFunctions; |
403 | - $BigFunc = function ($object1, $object2) use ($funcList) { |
|
403 | + $BigFunc = function($object1, $object2) use ($funcList) { |
|
404 | 404 | $ret = 0; |
405 | 405 | foreach ($funcList as $f) { |
406 | 406 | $ret = $f($object1, $object2); |
@@ -102,7 +102,7 @@ |
||
102 | 102 | |
103 | 103 | $a = $this->_isAscending ? 1 : -1; |
104 | 104 | |
105 | - $retVal = function ($object1, $object2) use ($ancestors, $a) { |
|
105 | + $retVal = function($object1, $object2) use ($ancestors, $a) { |
|
106 | 106 | $accessor1 = $object1; |
107 | 107 | $accessor2 = $object2; |
108 | 108 | $flag1 = is_null($accessor1); |