1 | <?php |
||
25 | class AdminController |
||
26 | { |
||
27 | /** |
||
28 | * @var \Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface |
||
29 | */ |
||
30 | private $tokenStorage; |
||
31 | |||
32 | /** |
||
33 | * @var \Symfony\Component\Routing\RouterInterface |
||
34 | */ |
||
35 | private $router; |
||
36 | |||
37 | /** |
||
38 | * @var \Symfony\Component\EventDispatcher\EventDispatcherInterface |
||
39 | */ |
||
40 | private $eventDispatcher; |
||
41 | |||
42 | /** |
||
43 | * @var \Symfony\Bundle\FrameworkBundle\Templating\EngineInterface |
||
44 | */ |
||
45 | private $templating; |
||
46 | |||
47 | /** |
||
48 | * @var \Symfony\Component\Form\FormFactoryInterface |
||
49 | */ |
||
50 | private $formFactory; |
||
51 | |||
52 | /** |
||
53 | * @var string |
||
54 | */ |
||
55 | private $changePasswordActionTemplate; |
||
56 | |||
57 | /** |
||
58 | * @var FlashMessages |
||
59 | */ |
||
60 | private $flashMessages; |
||
61 | |||
62 | /** |
||
63 | * @var string |
||
64 | */ |
||
65 | private $changePasswordFormType; |
||
66 | |||
67 | /** |
||
68 | * @var array |
||
69 | */ |
||
70 | private $changePasswordFormValidationGroups; |
||
71 | |||
72 | /** |
||
73 | * @param EngineInterface $templating |
||
74 | * @param FormFactoryInterface $formFactory |
||
75 | * @param TokenStorageInterface $tokenStorage |
||
76 | * @param RouterInterface $router |
||
77 | * @param EventDispatcherInterface $eventDispatcher |
||
78 | * @param FlashMessages $flashMessages |
||
79 | * @param string $changePasswordActionTemplate |
||
80 | * @param string $changePasswordFormType |
||
81 | * @param array $changePasswordFormValidationGroups |
||
82 | */ |
||
83 | public function __construct( |
||
104 | |||
105 | public function changePasswordAction(Request $request) |
||
135 | } |
||
136 |