Completed
Push — master ( 932cd1...29fc25 )
by Christopher
01:11
created
src/POData/UriProcessor/RequestExpander.php 1 patch
Doc Comments   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
      * Pushes a segment for the root of the tree
171 171
      * Note: Calls to this method should be balanced with calls to popSegment.
172 172
      *
173
-     * @return bool true if the segment was pushed, false otherwise
173
+     * @return boolean|null true if the segment was pushed, false otherwise
174 174
      */
175 175
     private function pushSegmentForRoot()
176 176
     {
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
      * @param ResourceProperty &$resourceProperty Current navigation property
190 190
      *                                            being written out
191 191
      *
192
-     * @return bool true if a segment was pushed, false otherwise
192
+     * @return boolean|null true if a segment was pushed, false otherwise
193 193
      *
194 194
      * @throws InvalidOperationException If this function invoked with non-navigation
195 195
      *                                   property instance
@@ -277,7 +277,7 @@  discard block
 block discarded – undo
277 277
      * @param ResourceSetWrapper &$resourceSetWrapper The resource set wrapper
278 278
      *                                                to push
279 279
      *
280
-     * @return bool true if the segment was push, false otherwise
280
+     * @return boolean|null true if the segment was push, false otherwise
281 281
      */
282 282
     private function pushSegment($segmentName, ResourceSetWrapper &$resourceSetWrapper)
283 283
     {
@@ -301,7 +301,7 @@  discard block
 block discarded – undo
301 301
     }
302 302
 
303 303
     /**
304
-     * @param $expandedProjectionNode
304
+     * @param ExpandedProjectionNode $expandedProjectionNode
305 305
      * @param $entry
306 306
      * @return null|\object[]
307 307
      */
@@ -327,10 +327,10 @@  discard block
 block discarded – undo
327 327
     }
328 328
 
329 329
     /**
330
-     * @param $expandedProjectionNode
330
+     * @param ExpandedProjectionNode $expandedProjectionNode
331 331
      * @param $entry
332
-     * @param $resourceType
333
-     * @param $expandedPropertyName
332
+     * @param \POData\Providers\Metadata\ResourceType $resourceType
333
+     * @param string $expandedPropertyName
334 334
      * @throws InvalidOperationException
335 335
      * @throws \POData\Common\ODataException
336 336
      */
@@ -360,9 +360,9 @@  discard block
 block discarded – undo
360 360
     /**
361 361
      * @param $entry
362 362
      * @param $result
363
-     * @param $expandedProjectionNode
364
-     * @param $resourceType
365
-     * @param $expandedPropertyName
363
+     * @param ExpandedProjectionNode $expandedProjectionNode
364
+     * @param \POData\Providers\Metadata\ResourceType $resourceType
365
+     * @param string $expandedPropertyName
366 366
      * @throws InvalidOperationException
367 367
      */
368 368
     private function executeCollectionExpansionProcessExpansion(
Please login to merge, or discard this patch.
src/POData/Providers/Metadata/SimpleMetadataProvider.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -446,10 +446,10 @@  discard block
 block discarded – undo
446 446
 
447 447
     /**
448 448
      * @param \ReflectionClass $refClass
449
-     * @param $name
450
-     * @param $namespace
449
+     * @param string $name
450
+     * @param string|null $namespace
451 451
      * @param $typeKind
452
-     * @param $baseResourceType
452
+     * @param null|ResourceType $baseResourceType
453 453
      * @return ResourceType
454 454
      * @throws InvalidOperationException
455 455
      */
@@ -472,7 +472,7 @@  discard block
 block discarded – undo
472 472
     }
473 473
 
474 474
     /**
475
-     * @param $name
475
+     * @param string $name
476 476
      * @param ResourceType $resourceType
477 477
      * @throws InvalidOperationException
478 478
      */
Please login to merge, or discard this patch.
src/POData/Providers/ProvidersQueryWrapper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -453,7 +453,7 @@
 block discarded – undo
453 453
     }
454 454
 
455 455
     /**
456
-     * @param $methodName
456
+     * @param string $methodName
457 457
      * @param $entityInstance
458 458
      * @param ResourceSet $resourceSet
459 459
      * @return ResourceType
Please login to merge, or discard this patch.
src/POData/ObjectModel/ObjectModelSerializer.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -770,9 +770,9 @@  discard block
 block discarded – undo
770 770
     /**
771 771
      * @param $customObject
772 772
      * @param ResourceType $resourceType
773
-     * @param $relativeUri
773
+     * @param string $relativeUri
774 774
      * @param ODataPropertyContent $odataPropertyContent
775
-     * @param $resourceTypeKind
775
+     * @param ResourceTypeKind $resourceTypeKind
776 776
      * @param $navigationProperties
777 777
      * @return array
778 778
      * @throws ODataException
@@ -879,9 +879,9 @@  discard block
 block discarded – undo
879 879
     /**
880 880
      * @param $customObject
881 881
      * @param ResourceType $resourceType
882
-     * @param $relativeUri
882
+     * @param string $relativeUri
883 883
      * @param ODataPropertyContent $odataPropertyContent
884
-     * @param $projectionNodes
884
+     * @param \POData\UriProcessor\QueryProcessor\ExpandProjectionParser\ProjectionNode[] $projectionNodes
885 885
      * @param $navigationProperties
886 886
      * @return array
887 887
      * @throws ODataException
Please login to merge, or discard this patch.