Passed
Push — chore/ci ( fb411d...7e65b5 )
by Fike
13:47
created
src/Accessor.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
 
94 94
     /**
95 95
      * @param mixed $root
96
-     * @param string|string[] $path
96
+     * @param string[] $path
97 97
      * @return NodeInterface
98 98
      */
99 99
     public function getNode(&$root, $path)
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
     /**
105 105
      * @param NodeInterface $root
106 106
      * @param string[] $path
107
-     * @return NodeInterface|null
107
+     * @return null|Node
108 108
      */
109 109
     public function findNode(&$root, array $path)
110 110
     {
Please login to merge, or discard this patch.
src/API/Exception/MissingNodeException.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
 {
10 10
     /**
11 11
      * @param string[] $path
12
-     * @param null $message
12
+     * @param string $message
13 13
      * @param Throwable|null $previous
14 14
      */
15 15
     public function __construct(array $path, $message = null, Throwable $previous = null)
Please login to merge, or discard this patch.
src/Metadata/Manager.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -40,6 +40,9 @@
 block discarded – undo
40 40
         return $properties;
41 41
     }
42 42
 
43
+    /**
44
+     * @param string $className
45
+     */
43 46
     private function analyze($className)
44 47
     {
45 48
         $reflection = new ReflectionClass($className);
Please login to merge, or discard this patch.
src/Type/ObjectAccessor.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -125,6 +125,9 @@
 block discarded – undo
125 125
         }
126 126
     }
127 127
 
128
+    /**
129
+     * @param string $property
130
+     */
128 131
     private function assertExists($item, $property)
129 132
     {
130 133
         if (!$this->exists($item, $property)) {
Please login to merge, or discard this patch.