Completed
Push — master ( 8a0d56...8adc32 )
by Boy
04:00
created
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.