Completed
Push — master ( 8a0d56...8adc32 )
by Boy
04:00
created
lib/Executable.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -49,6 +49,7 @@
 block discarded – undo
49 49
 
50 50
     /**
51 51
      * @TODO Remove this extra indirection when 5.3 support is dropped
52
+     * @param \ReflectionFunctionAbstract $reflection
52 53
      */
53 54
     private function invokeClosureCompat($reflection, $args)
54 55
     {
Please login to merge, or discard this patch.
lib/Injector.php 1 patch
Doc Comments   +15 added lines patch added patch discarded remove patch
@@ -171,6 +171,9 @@  discard block
 block discarded – undo
171 171
         return $this;
172 172
     }
173 173
 
174
+    /**
175
+     * @param string $nameOrInstance
176
+     */
174 177
     private function shareClass($nameOrInstance)
175 178
     {
176 179
         list(, $normalizedName) = $this->resolveAlias($nameOrInstance);
@@ -319,6 +322,9 @@  discard block
 block discarded – undo
319 322
         return $result;
320 323
     }
321 324
 
325
+    /**
326
+     * @param string|null $name
327
+     */
322 328
     private function filter($source, $name)
323 329
     {
324 330
         if (empty($name)) {
@@ -384,6 +390,9 @@  discard block
 block discarded – undo
384 390
         return $obj;
385 391
     }
386 392
 
393
+    /**
394
+     * @param string $normalizedClass
395
+     */
387 396
     private function provisionInstance($className, $normalizedClass, array $definition)
388 397
     {
389 398
         try {
@@ -631,6 +640,9 @@  discard block
 block discarded – undo
631 640
         return $arg;
632 641
     }
633 642
 
643
+    /**
644
+     * @param string $normalizedClass
645
+     */
634 646
     private function prepareInstance($obj, $normalizedClass)
635 647
     {
636 648
         if (isset($this->prepares[$normalizedClass])) {
@@ -737,6 +749,9 @@  discard block
 block discarded – undo
737 749
         return $executableStruct;
738 750
     }
739 751
 
752
+    /**
753
+     * @param string $stringExecutable
754
+     */
740 755
     private function buildExecutableStructFromString($stringExecutable)
741 756
     {
742 757
         if (function_exists($stringExecutable)) {
Please login to merge, or discard this patch.
lib/CachingReflector.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -199,6 +199,9 @@
 block discarded – undo
199 199
         return $docBlock;
200 200
     }
201 201
 
202
+    /**
203
+     * @param string $className
204
+     */
202 205
     public function getImplemented($className)
203 206
     {
204 207
         $cacheKey = self::CACHE_KEY_IMPLEMENTED . strtolower($className);
Please login to merge, or discard this patch.
lib/StandardReflector.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -100,6 +100,9 @@
 block discarded – undo
100 100
         );
101 101
     }
102 102
 
103
+    /**
104
+     * @param string $className
105
+     */
103 106
     public function getImplemented($className)
104 107
     {
105 108
         return array_merge([$className], class_implements($className));
Please login to merge, or discard this patch.