1 | <?php |
||
22 | class AddressRepository extends EntityRepository implements AddressRepositoryInterface |
||
23 | { |
||
24 | /** |
||
25 | * {@inheritdoc} |
||
26 | */ |
||
27 | public function findByCustomer(CustomerInterface $customer) |
||
37 | |||
38 | /** |
||
39 | * {@inheritdoc} |
||
40 | */ |
||
41 | public function findOneByCustomer($id, CustomerInterface $customer) |
||
53 | } |
||
54 |