| Total Complexity | 4 |
| Total Lines | 35 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 23 | class DoctrineSupplierRepository extends ServiceEntityRepository implements SupplierRepositoryProtocol |
||
| 24 | { |
||
| 25 | public function __construct(ManagerRegistry $registry) |
||
| 26 | { |
||
| 27 | parent::__construct($registry, Supplier::class); |
||
| 28 | } |
||
| 29 | |||
| 30 | public function remove(Supplier $supplier): void |
||
| 31 | { |
||
| 32 | // TODO: Implement remove() method. |
||
| 33 | } |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @throws NonUniqueResultException |
||
| 37 | */ |
||
| 38 | public function existsWithName(string $name): bool |
||
| 49 | } |
||
| 50 | |||
| 51 | /** |
||
| 52 | * @throws ORMException |
||
| 53 | */ |
||
| 54 | public function add(Supplier $supplier): void |
||
| 60 |
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