| Total Complexity | 3 |
| Total Lines | 48 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | class IpeClearance |
||
| 15 | { |
||
| 16 | protected string $apiKey; |
||
| 17 | protected string $baseUrl; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Construct |
||
| 21 | */ |
||
| 22 | public function __construct(string $apiKey, string $baseUrl) |
||
| 23 | { |
||
| 24 | $this->apiKey = $apiKey; |
||
| 25 | $this->baseUrl = $baseUrl; |
||
| 26 | } |
||
| 27 | |||
| 28 | /** |
||
| 29 | * ✔️ IPE Clearance - Instantly |
||
| 30 | * |
||
| 31 | * @param string $trackingID |
||
| 32 | * @return array|null |
||
| 33 | */ |
||
| 34 | public function ipeClearance(string $trackingID): ?array |
||
| 44 | } |
||
| 45 | |||
| 46 | /** |
||
| 47 | * ✅ IPE Clearance - status check |
||
| 48 | * |
||
| 49 | * @param string $trackingID |
||
| 50 | * @return array|null |
||
| 51 | */ |
||
| 52 | public function ipeClearanceStatus(string $trackingID): ?array |
||
| 62 | } |
||
| 63 | |||
| 64 | } |
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