| Total Complexity | 4 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | class DoctrineAddressChangeRepository implements AddressChangeRepository { |
||
| 12 | |||
| 13 | private EntityManager $entityManager; |
||
| 14 | |||
| 15 | 10 | public function __construct( EntityManager $entityManager ) { |
|
| 16 | 10 | $this->entityManager = $entityManager; |
|
| 17 | } |
||
| 18 | |||
| 19 | 7 | public function getAddressChangeByUuid( string $uuid ): ?AddressChange { |
|
| 21 | } |
||
| 22 | |||
| 23 | 3 | public function getAddressChangeByUuids( string $currentIdentifier, string $previousIdentifier ): ?AddressChange { |
|
| 35 | } |
||
| 36 | |||
| 37 | 6 | public function storeAddressChange( AddressChange $addressChange ): void { |
|
| 42 |