| Total Complexity | 4 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | abstract class AbstractActionReader |
||
| 11 | { |
||
| 12 | protected $annotationReader; |
||
| 13 | |||
| 14 | public function __construct(Reader $annotationReader) |
||
| 17 | } |
||
| 18 | |||
| 19 | public function getActions(\ReflectionClass $entity, array $actions): array |
||
| 32 | } |
||
| 33 | |||
| 34 | abstract protected function isSupported($annotation): bool; |
||
| 35 | } |
||
| 36 |