Total Complexity | 2 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | abstract class ApiResource implements \ArrayAccess, \Countable { |
||
14 | |||
15 | private $_client; |
||
16 | |||
17 | /** |
||
18 | * @param Connector $_client |
||
19 | * @return $this |
||
20 | */ |
||
21 | public function setClient(Connector $_client): ApiResouce |
||
|
|||
22 | { |
||
23 | $this->_client = $_client; |
||
24 | return $this; |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * @return Connector |
||
29 | */ |
||
30 | public function getClient(): Connector |
||
33 | } |
||
34 | } |
||
35 |
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