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