| Total Complexity | 6 |
| Total Lines | 66 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 2 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 17 | final class PirateWrathRepository extends EntityRepository implements PirateWrathRepositoryInterface |
||
| 18 | { |
||
| 19 | #[Override] |
||
| 20 | public function save(PirateWrathInterface $wrath): void |
||
| 21 | { |
||
| 22 | $em = $this->getEntityManager(); |
||
| 23 | |||
| 24 | $em->persist($wrath); |
||
| 25 | } |
||
| 26 | |||
| 27 | #[Override] |
||
| 28 | public function delete(PirateWrathInterface $wrath): void |
||
| 29 | { |
||
| 30 | $em = $this->getEntityManager(); |
||
| 31 | |||
| 32 | $em->remove($wrath); |
||
| 33 | } |
||
| 34 | |||
| 35 | #[Override] |
||
| 39 | } |
||
| 40 | |||
| 41 | #[Override] |
||
| 50 | } |
||
| 51 | |||
| 52 | /** |
||
| 53 | * @return PirateWrathInterface[] |
||
| 54 | */ |
||
| 55 | #[Override] |
||
| 69 | } |
||
| 70 | |||
| 71 | #[Override] |
||
| 83 | } |
||
| 84 | } |
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