| Total Complexity | 5 |
| Total Lines | 38 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | class ParamsAnnotation extends AbstractAnnotation |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * @var string[] $parameters The method call parameters. |
||
| 24 | */ |
||
| 25 | private $parameters; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * {@inheritdoc} |
||
| 29 | */ |
||
| 30 | public function getType(): int |
||
| 31 | { |
||
| 32 | return AnnotationInterface::TYPE_PARAMS; |
||
| 33 | } |
||
| 34 | |||
| 35 | /** |
||
| 36 | * {@inheritdoc} |
||
| 37 | */ |
||
| 38 | public function compile(): void |
||
| 50 | } |
||
| 51 | |||
| 52 | /** |
||
| 53 | * @return string[] The constructor parameters. |
||
| 54 | */ |
||
| 55 | public function getParameters(): array |
||
| 60 |