1 | <?php |
||
15 | class DebugListener implements ListenerInterface |
||
16 | { |
||
17 | /** |
||
18 | * @var TokenStorageInterface |
||
19 | */ |
||
20 | protected $tokenStorage; |
||
21 | |||
22 | /** |
||
23 | * @var AuthenticationManagerInterface |
||
24 | */ |
||
25 | protected $authenticationManager; |
||
26 | |||
27 | /** |
||
28 | * WsseListener constructor. |
||
29 | * |
||
30 | * @param TokenStorageInterface $tokenStorage |
||
31 | * @param AuthenticationManagerInterface $authenticationManager |
||
32 | */ |
||
33 | public function __construct(TokenStorageInterface $tokenStorage, AuthenticationManagerInterface $authenticationManager) |
||
38 | |||
39 | /** |
||
40 | * @param GetResponseEvent $event |
||
41 | */ |
||
42 | public function handle(GetResponseEvent $event) |
||
50 | |||
51 | /** |
||
52 | * @param ResponseFactory $responseFactory |
||
53 | **/ |
||
54 | public function setResponseFactory(ResponseFactory $responseFactory) |
||
57 | } |
||
58 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.