| Total Complexity | 3 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 5 | class Framework extends \Formularium\Framework |
||
| 6 | { |
||
| 7 | public function __construct(string $name = 'HTMLValidation') |
||
| 8 | { |
||
| 9 | parent::__construct($name); |
||
| 10 | } |
||
| 11 | |||
| 12 | public function viewableCompose(\Formularium\Model $m, array $elements, string $previousCompose): string |
||
| 15 | } |
||
| 16 | |||
| 17 | public function editableCompose(\Formularium\Model $m, array $elements, string $previousCompose): string |
||
| 20 | } |
||
| 21 | } |
||
| 22 |