Completed
Push — master ( 6af734...e96280 )
by Alexander
01:52
created
src/Traits/ReflectionFunctionLikeTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -174,7 +174,7 @@
 block discarded – undo
174 174
     /**
175 175
      * Gets the specified return type of a function
176 176
      *
177
-     * @return \ReflectionType
177
+     * @return null|ReflectionType
178 178
      *
179 179
      * @link http://php.net/manual/en/reflectionfunctionabstract.getreturntype.php
180 180
      */
Please login to merge, or discard this patch.
src/ReflectionFunction.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
      * Initializes reflection instance for given AST-node
27 27
      *
28 28
      * @param string|\Closure $functionName The name of the function to reflect or a closure.
29
-     * @param Function_|null  $functionNode Function node AST
29
+     * @param Function_  $functionNode Function node AST
30 30
      */
31 31
     public function __construct($functionName, Function_ $functionNode)
32 32
     {
Please login to merge, or discard this patch.
src/ReflectionProperty.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -160,6 +160,7 @@
 block discarded – undo
160 160
 
161 161
     /**
162 162
      * @inheritDoc
163
+     * @return string
163 164
      */
164 165
     public function getName()
165 166
     {
Please login to merge, or discard this patch.