Commit a3d264e3 by Damien Moulard

fix presta save professionnal info

parent 2d0d9569
......@@ -74,6 +74,7 @@ class FluxController extends AbstractController
protected $operationUtils;
protected $tokenGenerator;
protected $validator;
protected $userManager;
public function __construct(
Security $security,
......@@ -86,7 +87,8 @@ class FluxController extends AbstractController
TAVCotisationUtils $tavCotisationsUtils,
TokenGeneratorInterface $tokenGenerator,
ValidatorInterface $validator,
CsrfTokenManagerInterface $tokenManager
CsrfTokenManagerInterface $tokenManager,
UserManagerInterface $userManager
) {
$this->security = $security;
$this->em = $em;
......@@ -99,6 +101,7 @@ class FluxController extends AbstractController
$this->validator = $validator;
$this->tokenManager = $tokenManager;
$this->tavCotisationsUtils = $tavCotisationsUtils;
$this->userManager = $userManager;
}
protected function manageFluxForm(Request $request, Form $form, $template = '@kohinos/flux/transaction.html.twig', $params = [])
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment