| Total Complexity | 4 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | final class WeaponShieldRepository extends EntityRepository implements WeaponShieldRepositoryInterface |
||
| 16 | { |
||
| 17 | public function prototype(): WeaponShieldInterface |
||
| 20 | } |
||
| 21 | |||
| 22 | public function save(WeaponShieldInterface $weaponshield): void |
||
| 23 | { |
||
| 24 | $em = $this->getEntityManager(); |
||
| 25 | |||
| 26 | $em->persist($weaponshield); |
||
| 27 | } |
||
| 28 | |||
| 29 | public function delete(WeaponShieldInterface $weaponshield): void |
||
| 34 | } |
||
| 35 | |||
| 36 | public function getByModuleAndWeapon( |
||
| 46 |