Total Complexity | 3 |
Total Lines | 40 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | abstract class AbstractBuilder implements BuilderInterface |
||
8 | { |
||
9 | protected $name; |
||
10 | protected $options; |
||
11 | |||
12 | public function getName(): string |
||
15 | } |
||
16 | |||
17 | public function getOptions(): array |
||
18 | { |
||
19 | return $this->options; |
||
20 | } |
||
21 | |||
22 | abstract protected function factory(): FormBuilderInterface; |
||
23 | |||
24 | protected function twig() |
||
47 | } |
||
48 | } |
||
49 |