| Total Complexity | 2 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | class Section implements IBuilder |
||
| 15 | { |
||
| 16 | use ItemTrait; |
||
| 17 | |||
| 18 | const IDENTIFIER = 'section'; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @return string |
||
| 22 | */ |
||
| 23 | public function getIdentifier(): string |
||
| 26 | } |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @SuppressWarnings(PHPMD.UnusedFormalParameter) |
||
| 30 | * |
||
| 31 | * @param Entity $list |
||
| 32 | * @param ParsedTemplate|null $template |
||
| 33 | * |
||
| 34 | * @return Data |
||
| 35 | */ |
||
| 36 | public function build($list, ?ParsedTemplate $template = null): IData |
||
| 47 |