| Total Complexity | 2 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | abstract class AbstractAction extends AbstractAnnotation |
||
| 16 | { |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Action template. |
||
| 20 | * |
||
| 21 | * @var string|null |
||
| 22 | */ |
||
| 23 | public ?string $template = null; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @param string|array|null $template Action template or annotation |
||
| 27 | * parameters. |
||
| 28 | * |
||
| 29 | * @throws ReflectionException |
||
| 30 | */ |
||
| 31 | public function __construct( |
||
| 42 |