| Total Complexity | 3 | 
| Total Lines | 19 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 8 | class PersonLdsForm  | 
            ||
| 9 | { | 
            ||
| 10 | protected const TemplatePath = __DIR__.'/../Templates//personLds.json';  | 
            ||
| 11 | |||
| 12 | protected Form $form;  | 
            ||
| 13 | |||
| 14 | public function __construct()  | 
            ||
| 15 |     { | 
            ||
| 16 | $this->form = new Form(static::TemplatePath);  | 
            ||
| 17 | }  | 
            ||
| 18 | |||
| 19 | public function create()  | 
            ||
| 22 | }  | 
            ||
| 23 | |||
| 24 | public function edit(PersonLds $personLds)  | 
            ||
| 27 | }  | 
            ||
| 28 | }  | 
            ||
| 29 |