| Total Complexity | 3 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class MenuForm |
||
| 10 | { |
||
| 11 | protected const FormPath = __DIR__.'/../../../Templates/enso/menus/menu.json'; |
||
| 12 | |||
| 13 | protected Form $form; |
||
| 14 | |||
| 15 | public function __construct() |
||
| 20 | } |
||
| 21 | |||
| 22 | public function create() |
||
| 23 | { |
||
| 24 | return $this->form->create(); |
||
| 25 | } |
||
| 26 | |||
| 27 | public function edit(Menu $menu) |
||
| 30 | } |
||
| 31 | } |
||
| 32 |