| 1 | <?php |
||
| 14 | class ReflectionService |
||
| 15 | { |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Get the tag value |
||
| 19 | * - Array (if the tag exist) |
||
| 20 | * - false (if the tag do not exists) |
||
| 21 | * |
||
| 22 | * @param string $className |
||
| 23 | * @param string $tag |
||
| 24 | * @return array|bool |
||
| 25 | */ |
||
| 26 | public function getClassTagValues(string $className, string $tag) |
||
| 42 | |||
| 43 | /** |
||
| 44 | * Get method tag values |
||
| 45 | * - Array |
||
| 46 | * - False (if there are any problems) |
||
| 47 | * |
||
| 48 | * @param string $className |
||
| 49 | * @param string $methodName |
||
| 50 | * @return array|bool |
||
| 51 | */ |
||
| 52 | public function getMethodTagValues(string $className, string $methodName) |
||
| 62 | |||
| 63 | } |
||
| 64 |