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