| Total Complexity | 7 |
| Total Lines | 57 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | final class RpgPlotMemberArchivRepository extends EntityRepository implements RpgPlotMemberArchivRepositoryInterface |
||
| 15 | { |
||
| 16 | #[Override] |
||
| 22 | ]); |
||
| 23 | } |
||
| 24 | |||
| 25 | #[Override] |
||
| 26 | public function prototype(): RpgPlotMemberArchiv |
||
| 27 | { |
||
| 28 | return new RpgPlotMemberArchiv(); |
||
| 29 | } |
||
| 30 | |||
| 31 | #[Override] |
||
| 32 | public function save(RpgPlotMemberArchiv $rpgPlotMember): void |
||
| 33 | { |
||
| 34 | $em = $this->getEntityManager(); |
||
| 35 | |||
| 36 | $em->persist($rpgPlotMember); |
||
| 37 | } |
||
| 38 | |||
| 39 | #[Override] |
||
| 45 | } |
||
| 46 | |||
| 47 | #[Override] |
||
| 52 | ]); |
||
| 53 | } |
||
| 54 | |||
| 55 | public function getByPlotFormerId(int $plotFormerId): array |
||
| 56 | { |
||
| 57 | return $this->findBy([ |
||
| 58 | 'plot_id' => $plotFormerId |
||
| 59 | ]); |
||
| 60 | } |
||
| 61 | |||
| 62 | #[Override] |
||
| 71 | } |
||
| 72 | } |
||
| 73 |
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