| Total Complexity | 3 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | class AuthentifierResponse implements IAuthentifierResponse |
||
| 16 | { |
||
| 17 | /** @var AuthenticationProcess */ |
||
|
|
|||
| 18 | private $process; |
||
| 19 | |||
| 20 | /** @var ResponseInterface|null */ |
||
| 21 | private $response; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @param IAuthenticationProcess $process The authentication process. |
||
| 25 | * @param null|ResponseInterface $response The HTTP response, if any. |
||
| 26 | */ |
||
| 27 | public function __construct( |
||
| 28 | IAuthenticationProcess $process, |
||
| 29 | ?ResponseInterface $response |
||
| 30 | ) { |
||
| 31 | $this->process = $process; |
||
| 32 | $this->response = $response; |
||
| 33 | } |
||
| 34 | |||
| 35 | public function getAuthenticationProcess(): IAuthenticationProcess |
||
| 36 | { |
||
| 37 | return $this->process; |
||
| 38 | } |
||
| 39 | |||
| 40 | public function getHttpResponse(): ?ResponseInterface |
||
| 43 | } |
||
| 44 | } |
||
| 45 |
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