Completed
Push — master ( 6f6c2f...93dd0d )
by Tim
02:28
created
Classes/Utility/ReflectionUtility.php 1 patch
Doc Comments   +6 added lines, -7 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
      *
27 27
      * @param string $className
28 28
      *
29
-     * @return ClassReflection
29
+     * @return string
30 30
      */
31 31
     public static function createReflectionClass($className)
32 32
     {
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
      * @param string $className
130 130
      * @param string $tag
131 131
      *
132
-     * @return string|bool
132
+     * @return false|string
133 133
      */
134 134
     public static function getFirstTagValue(string $className, string $tag)
135 135
     {
@@ -177,10 +177,9 @@  discard block
 block discarded – undo
177 177
     /**
178 178
      * Get the tag configuration from this method and respect multiple line and space configuration.
179 179
      *
180
-     * @param MethodReflection|ClassReflection $reflectionObject
181
-     * @param array                            $tagNames
180
+     * @param string[]                            $tagNames
182 181
      *
183
-     * @return array
182
+     * @return string
184 183
      */
185 184
     public static function getTagConfigurationForMethod($className, $methodName, array $tagNames): array
186 185
     {
@@ -207,8 +206,8 @@  discard block
 block discarded – undo
207 206
     /**
208 207
      * Get the tag configuration from this method and respect multiple line and space configuration.
209 208
      *
210
-     * @param MethodReflection|ClassReflection $reflectionObject
211
-     * @param array                            $tagNames
209
+     * @param string[]                            $tagNames
210
+     * @param string $className
212 211
      *
213 212
      * @return array
214 213
      */
Please login to merge, or discard this patch.