| Total Complexity | 5 |
| Total Lines | 42 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 24 | final class PharDiff |
||
| 25 | { |
||
| 26 | private readonly PharInfo $pharInfoA; |
||
| 27 | private readonly PharInfo $pharInfoB; |
||
| 28 | private readonly DifferFactory $differFactory; |
||
| 29 | |||
| 30 | public function __construct(string $pathA, string $pathB) |
||
| 41 | } |
||
| 42 | |||
| 43 | public function getPharInfoA(): PharInfo |
||
| 44 | { |
||
| 45 | return $this->pharInfoA; |
||
| 46 | } |
||
| 47 | |||
| 48 | public function getPharInfoB(): PharInfo |
||
| 51 | } |
||
| 52 | |||
| 53 | public function equals(): bool |
||
| 54 | { |
||
| 55 | return $this->pharInfoA->equals($this->pharInfoB); |
||
| 56 | } |
||
| 57 | |||
| 58 | public function diff(DiffMode $mode, string $checksumAlgorithm, IO $io): void |
||
| 66 | ); |
||
| 67 | } |
||
| 69 |
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