| Total Complexity | 3 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class CitationForm |
||
| 10 | { |
||
| 11 | private const TemplatePath = __DIR__.'/../Templates/citation.json'; |
||
| 12 | |||
| 13 | private $form; |
||
| 14 | |||
| 15 | public function __construct() |
||
| 16 | { |
||
| 17 | $this->form = new Form(self::TemplatePath); |
||
| 18 | } |
||
| 19 | |||
| 20 | public function create() |
||
| 24 | } |
||
| 25 | |||
| 26 | public function edit(Citation $citation) |
||
| 32 |