Commit a3d264e3 by Damien Moulard

fix presta save professionnal info

parent 2d0d9569
...@@ -74,6 +74,7 @@ class FluxController extends AbstractController ...@@ -74,6 +74,7 @@ class FluxController extends AbstractController
protected $operationUtils; protected $operationUtils;
protected $tokenGenerator; protected $tokenGenerator;
protected $validator; protected $validator;
protected $userManager;
public function __construct( public function __construct(
Security $security, Security $security,
...@@ -86,7 +87,8 @@ class FluxController extends AbstractController ...@@ -86,7 +87,8 @@ class FluxController extends AbstractController
TAVCotisationUtils $tavCotisationsUtils, TAVCotisationUtils $tavCotisationsUtils,
TokenGeneratorInterface $tokenGenerator, TokenGeneratorInterface $tokenGenerator,
ValidatorInterface $validator, ValidatorInterface $validator,
CsrfTokenManagerInterface $tokenManager CsrfTokenManagerInterface $tokenManager,
UserManagerInterface $userManager
) { ) {
$this->security = $security; $this->security = $security;
$this->em = $em; $this->em = $em;
...@@ -99,6 +101,7 @@ class FluxController extends AbstractController ...@@ -99,6 +101,7 @@ class FluxController extends AbstractController
$this->validator = $validator; $this->validator = $validator;
$this->tokenManager = $tokenManager; $this->tokenManager = $tokenManager;
$this->tavCotisationsUtils = $tavCotisationsUtils; $this->tavCotisationsUtils = $tavCotisationsUtils;
$this->userManager = $userManager;
} }
protected function manageFluxForm(Request $request, Form $form, $template = '@kohinos/flux/transaction.html.twig', $params = []) 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