1 | <?php |
||
17 | class ReflectionService |
||
18 | { |
||
19 | |||
20 | /** |
||
21 | * Get the tag value |
||
22 | * - Array (if the tag exist) |
||
23 | * - false (if the tag do not exists) |
||
24 | * |
||
25 | * @param string $className |
||
26 | * @param string $tag |
||
27 | * @return array|bool |
||
28 | */ |
||
29 | public function getClassTagValues(string $className, string $tag) |
||
45 | |||
46 | /** |
||
47 | * Get method tag values |
||
48 | * - Array |
||
49 | * - False (if there are any problems) |
||
50 | * |
||
51 | * @param string $className |
||
52 | * @param string $methodName |
||
53 | * @return array|bool |
||
54 | */ |
||
55 | public function getMethodTagValues(string $className, string $methodName) |
||
71 | |||
72 | /** |
||
73 | * Is 9 or higher. |
||
74 | * |
||
75 | * @return bool |
||
76 | */ |
||
77 | public function is9orHigher(): bool |
||
81 | } |
||
82 |
This method has been deprecated.