Total Complexity | 2 |
Total Lines | 37 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | class DevEntryPoint implements AuthenticationEntryPointInterface |
||
18 | { |
||
19 | /** |
||
20 | * @var GuardAuthenticatorHandler |
||
21 | */ |
||
22 | private $authHandler; |
||
23 | |||
24 | /** |
||
25 | * @var string |
||
26 | */ |
||
27 | private $storeName; |
||
28 | |||
29 | /** |
||
30 | * @var string |
||
31 | */ |
||
32 | private $firewallName; |
||
33 | |||
34 | public function __construct(GuardAuthenticatorHandler $authHandler, $storeName, $firewallName) |
||
35 | { |
||
36 | $this->authHandler = $authHandler; |
||
37 | $this->storeName = $storeName; |
||
38 | $this->firewallName = $firewallName; |
||
39 | } |
||
40 | |||
41 | public function start(Request $request, AuthenticationException $authException = null) |
||
54 | } |
||
55 | } |
||
56 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"]
, you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths