Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
38 | 2 | public function create(Form $component): FormInterface |
|
39 | { |
||
40 | 2 | return $this->formFactory->create( |
|
41 | 2 | $component->getFormType(), |
|
42 | 2 | null, |
|
43 | [ |
||
44 | 2 | 'method' => 'POST', |
|
45 | 2 | 'action' => $this->router->generate('silverback_api_component_form_submit', [ |
|
46 | 2 | 'id' => $component->getId() |
|
47 | ]) |
||
52 |