Total Complexity | 3 |
Total Lines | 41 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
10 | abstract class AbstractQueryExecutionOptionsBlock extends AbstractOptionsBlock |
||
11 | { |
||
12 | public const ATTRIBUTE_NAME_IS_ENABLED = 'isEnabled'; |
||
13 | |||
14 | protected function isDynamicBlock(): bool |
||
15 | { |
||
16 | return true; |
||
17 | } |
||
18 | |||
19 | /** |
||
20 | * @param array<string, mixed> $attributes |
||
21 | */ |
||
22 | public function renderBlock(array $attributes, string $content): string |
||
38 | ); |
||
39 | } |
||
40 | |||
41 | /** |
||
42 | * @param array<string, mixed> $attributes |
||
43 | */ |
||
44 | protected function getBlockContent(array $attributes, string $content): string |
||
51 | ); |
||
52 | } |
||
54 |