1 | <?php |
||
8 | class DispatchAuthentication |
||
9 | { |
||
10 | /** |
||
11 | * @var AuthenticationService |
||
12 | */ |
||
13 | protected $authService; |
||
14 | |||
15 | /** |
||
16 | * @param AuthenticationService $authService |
||
17 | */ |
||
18 | public function __construct(AuthenticationService $authService) |
||
22 | |||
23 | public function __invoke(AuthenticationEvent $e) |
||
27 | } |
||
28 |