Completed
Push — master ( 5dba49...415dbb )
by Boy
05:54
created
lib/Executable.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
 
50 50
     /**
51 51
      * @TODO Remove this extra indirection when 5.3 support is dropped
52
-     * @param $reflection
52
+     * @param \ReflectionFunctionAbstract $reflection
53 53
      * @param $args
54 54
      *
55 55
      * @return mixed
Please login to merge, or discard this patch.
lib/Injector.php 1 patch
Doc Comments   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
     /**
151 151
      * Share the specified class/instance across the Injector context
152 152
      *
153
-     * @param mixed $nameOrInstance The class or object to share
153
+     * @param Reflector $nameOrInstance The class or object to share
154 154
      * @throws ConfigException if $nameOrInstance is not a string or an object
155 155
      * @return self
156 156
      */
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
     }
176 176
 
177 177
     /**
178
-     * @param $nameOrInstance
178
+     * @param string $nameOrInstance
179 179
      */
180 180
     private function shareClass($nameOrInstance)
181 181
     {
@@ -327,7 +327,7 @@  discard block
 block discarded – undo
327 327
 
328 328
     /**
329 329
      * @param $source
330
-     * @param $name
330
+     * @param string|null $name
331 331
      *
332 332
      * @return array
333 333
      */
@@ -398,7 +398,7 @@  discard block
 block discarded – undo
398 398
 
399 399
     /**
400 400
      * @param       $className
401
-     * @param       $normalizedClass
401
+     * @param       string $normalizedClass
402 402
      * @param array $definition
403 403
      *
404 404
      * @return object
@@ -458,7 +458,7 @@  discard block
 block discarded – undo
458 458
     /**
459 459
      * @param \ReflectionFunctionAbstract $reflFunc
460 460
      * @param array                       $definitions
461
-     * @param array|null                  $reflParams
461
+     * @param \ReflectionParameter[]                  $reflParams
462 462
      *
463 463
      * @return array
464 464
      * @throws ConfigException
@@ -655,7 +655,7 @@  discard block
 block discarded – undo
655 655
 
656 656
     /**
657 657
      * @param $obj
658
-     * @param $normalizedClass
658
+     * @param string $normalizedClass
659 659
      *
660 660
      * @return mixed
661 661
      * @throws InjectionException
@@ -767,7 +767,7 @@  discard block
 block discarded – undo
767 767
     }
768 768
 
769 769
     /**
770
-     * @param $stringExecutable
770
+     * @param string $stringExecutable
771 771
      *
772 772
      * @return array
773 773
      * @throws InjectionException
Please login to merge, or discard this patch.