Commit ab0b7962 by Damien Moulard

fix adhesion

parent fd2fc170
......@@ -74,6 +74,7 @@ class FluxController extends AbstractController
protected $payum;
protected $authenticator;
protected $guardHandler;
protected $userManager;
public function __construct(Security $security,
EntityManagerInterface $em,
......@@ -82,6 +83,7 @@ class FluxController extends AbstractController
SessionInterface $session,
LoginAuthenticator $authenticator,
GuardAuthenticatorHandler $guardHandler,
UserManagerInterface $userManager,
Payum $payum)
{
$this->security = $security;
......@@ -92,6 +94,7 @@ class FluxController extends AbstractController
$this->payum = $payum;
$this->authenticator = $authenticator;
$this->guardHandler = $guardHandler;
$this->userManager = $userManager;
}
protected function manageFluxForm(Request $request, Form $form, $compte, $success, $title)
......
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