| Total Complexity | 3 |
| Total Lines | 35 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | abstract class AbstractItemListAccessControlRuleBlock extends AbstractAccessControlRuleBlock |
||
| 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 |
||
| 42 | ) |
||
| 43 | ); |
||
| 44 | } |
||
| 45 | |||
| 46 | abstract protected function getHeader(): string; |
||
| 47 | } |
||
| 48 |