Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
23 | public function __invoke(User $user): Response |
||
24 | { |
||
25 | $form = $this->createForm(UserType::class, $user, [ |
||
26 | 'action' => $this->generateUrl('admin_user_update', ['uuid' => $user->uuid()]), |
||
27 | 'method' => 'PUT', |
||
28 | ]); |
||
29 | |||
30 | return $this->render('Administration/User/edit.html.twig', [ |
||
31 | 'form' => $form->createView(), |
||
32 | ]); |
||
35 |