Total Complexity | 2 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | class ParametersReader implements ParametersReaderInterface |
||
15 | { |
||
16 | /** |
||
17 | * @var \SprykerEco\Zed\Payone\Dependency\Facade\PayoneToStoreFacadeInterface |
||
18 | */ |
||
19 | protected PayoneToStoreFacadeInterface $storeFacade; |
||
20 | |||
21 | /** |
||
22 | * @var \SprykerEco\Zed\Payone\PayoneConfig |
||
23 | */ |
||
24 | protected PayoneConfig $payoneConfig; |
||
25 | |||
26 | /** |
||
27 | * @param \SprykerEco\Zed\Payone\Dependency\Facade\PayoneToStoreFacadeInterface $storeFacade |
||
28 | * @param \SprykerEco\Zed\Payone\PayoneConfig $payoneConfig |
||
29 | */ |
||
30 | public function __construct(PayoneToStoreFacadeInterface $storeFacade, PayoneConfig $payoneConfig) |
||
31 | { |
||
32 | $this->storeFacade = $storeFacade; |
||
33 | $this->payoneConfig = $payoneConfig; |
||
34 | } |
||
35 | |||
36 | /** |
||
37 | * @return \Generated\Shared\Transfer\PayoneStandardParameterTransfer |
||
38 | */ |
||
39 | public function getRequestStandardParameter(): PayoneStandardParameterTransfer |
||
52 | } |
||
53 | } |
||
54 |
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