Total Complexity | 3 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
11 | class DoctrineAddressChangeRepository implements AddressChangeRepository { |
||
12 | |||
13 | private $entityManager; |
||
14 | |||
15 | public function __construct( EntityManager $entityManager ) { |
||
16 | $this->entityManager = $entityManager; |
||
17 | } |
||
18 | |||
19 | public function getAddressChangeByUuid( string $uuid ): ?AddressChange { |
||
21 | } |
||
22 | |||
23 | public function storeAddressChange( AddressChange $addressChange ): void { |
||
26 | } |
||
27 | } |