1 | <?php |
||
23 | final class OAuth2EntryPoint implements AuthenticationEntryPointInterface |
||
24 | { |
||
25 | /** |
||
26 | * @var OAuth2MessageFactoryManager |
||
27 | */ |
||
28 | private $oauth2ResponseFactoryManager; |
||
29 | |||
30 | /** |
||
31 | * OAuth2EntryPoint constructor. |
||
32 | * |
||
33 | * @param OAuth2MessageFactoryManager $oauth2ResponseFactoryManager |
||
34 | */ |
||
35 | public function __construct(OAuth2MessageFactoryManager $oauth2ResponseFactoryManager) |
||
39 | |||
40 | /** |
||
41 | * {@inheritdoc} |
||
42 | */ |
||
43 | public function start(Request $request, AuthenticationException $authException = null) |
||
56 | } |
||
57 |
Very long variable names usually make code harder to read. It is therefore recommended not to make variable names too verbose.