Total Complexity | 3 |
Total Lines | 53 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
23 | class DenyPaymentClient implements ClientInterface |
||
24 | { |
||
25 | /** |
||
26 | * @var LoggerInterface |
||
27 | */ |
||
28 | private $logger; |
||
29 | |||
30 | /** |
||
31 | * @var ZendClientFactory |
||
32 | */ |
||
33 | private $httpClientFactory; |
||
34 | |||
35 | /** |
||
36 | * @var Config |
||
37 | */ |
||
38 | private $config; |
||
39 | |||
40 | /** |
||
41 | * @var Json |
||
42 | */ |
||
43 | private $json; |
||
44 | |||
45 | /** |
||
46 | * @param Logger $logger |
||
47 | * @param ZendClientFactory $httpClientFactory |
||
48 | * @param Config $config |
||
49 | * @param Json $json |
||
50 | */ |
||
51 | public function __construct( |
||
61 | } |
||
62 | |||
63 | /** |
||
64 | * Places request to gateway. |
||
65 | * |
||
66 | * @param TransferInterface $transferObject |
||
67 | * |
||
68 | * @return array |
||
69 | */ |
||
70 | public function placeRequest(TransferInterface $transferObject) |
||
80 |
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