Completed
Pull Request — master (#69)
by David
02:45 queued 25s
created
src/ReflectionClass.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
     /**
29 29
      * Initializes reflection instance
30 30
      *
31
-     * @param string|object $argument Class name or instance of object
31
+     * @param string|null $argument Class name or instance of object
32 32
      * @param ClassLike $classLikeNode AST node for class
33 33
      * @param ReflectionParser $reflectionParser AST parser
34 34
      */
Please login to merge, or discard this patch.
src/ReflectionParser.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
      *
94 94
      * @param string $fullName Full name of the class
95 95
      *
96
-     * @return void
96
+     * @return \ReflectionClass
97 97
      */
98 98
     public function getClassReflection($fullName)
99 99
     {
@@ -267,6 +267,9 @@  discard block
 block discarded – undo
267 267
 
268 268
     /**
269 269
      * Provides back compatibility with static ReflectionEngine
270
+     * @param null|integer $maximumCachedFiles
271
+     * @param null|Parser $parser
272
+     * @param null|NodeTraverser $traverser
270 273
      * @return void
271 274
      */
272 275
     public function initStaticEngine(&$parsedFiles, &$maximumCachedFiles, &$parser, &$traverser)
Please login to merge, or discard this patch.