| Total Complexity | 2 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | class DirectiveExecution extends Execution implements DirectiveExecutionInterface |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * @var DirectiveInterface |
||
| 24 | */ |
||
| 25 | private DirectiveInterface $directive; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * DirectiveExecution constructor. |
||
| 29 | * |
||
| 30 | * @param DirectiveInterface $directive |
||
| 31 | * @param DefinitionInterface $context |
||
| 32 | * @param iterable $arguments |
||
| 33 | */ |
||
| 34 | public function __construct(DirectiveInterface $directive, DefinitionInterface $context, iterable $arguments = []) |
||
| 39 | } |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @return DirectiveInterface |
||
| 43 | */ |
||
| 44 | public function getDirective(): DirectiveInterface |
||
| 49 |