Total Complexity | 3 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
18 | class SignatureResponseValidatedEvent extends Event |
||
19 | { |
||
20 | /** |
||
21 | * @var HasRegisteredKeys |
||
22 | */ |
||
23 | private $user; |
||
24 | |||
25 | /** |
||
26 | * @var SignatureResponse |
||
27 | */ |
||
28 | private $signatureResponse; |
||
29 | |||
30 | /** |
||
31 | * SignatureResponseIssuedEvent constructor. |
||
32 | * |
||
33 | * @param HasRegisteredKeys $user |
||
34 | * @param SignatureResponse $signatureResponse |
||
35 | */ |
||
36 | public function __construct(HasRegisteredKeys $user, SignatureResponse $signatureResponse) |
||
37 | { |
||
38 | $this->user = $user; |
||
39 | $this->signatureResponse = $signatureResponse; |
||
40 | } |
||
41 | |||
42 | /** |
||
43 | * @return HasRegisteredKeys |
||
44 | */ |
||
45 | public function getUser(): HasRegisteredKeys |
||
46 | { |
||
47 | return $this->user; |
||
48 | } |
||
49 | |||
50 | /** |
||
51 | * @return SignatureResponse |
||
52 | */ |
||
53 | public function getSignatureResponse(): SignatureResponse |
||
56 | } |
||
57 | } |
||
58 |
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