| Total Complexity | 3 |
| Total Lines | 35 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | abstract class AbstractMenu extends AbstractAutomaticallyInstantiatedService |
||
| 15 | { |
||
| 16 | abstract public static function getName(): string; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Initialize the endpoints |
||
| 20 | * |
||
| 21 | * @return void |
||
| 22 | */ |
||
| 23 | public function initialize(): void |
||
| 40 | ); |
||
| 41 | } |
||
| 42 | public function addMenuPagesTop(): void |
||
| 43 | { |
||
| 44 | // Initially empty |
||
| 45 | } |
||
| 46 | |||
| 47 | public function addMenuPagesBottom(): void |
||
| 49 | // Initially empty |
||
| 50 | } |
||
| 52 |