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