| Total Complexity | 4 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 24 | class FormFactory |
||
| 25 | { |
||
| 26 | private $formFactory; |
||
| 27 | private $router; |
||
| 28 | |||
| 29 | public function __construct( |
||
| 30 | FormFactoryInterface $formFactory, |
||
| 31 | RouterInterface $router |
||
| 32 | ) { |
||
| 33 | $this->formFactory = $formFactory; |
||
| 34 | $this->router = $router; |
||
| 35 | } |
||
| 36 | |||
| 37 | public function create(Form $component): FormBuilderInterface |
||
| 52 | } |
||
| 53 | } |
||
| 54 |