1 | <?php |
||
11 | final class AddressBookViewFactory implements AddressBookViewFactoryInterface |
||
12 | { |
||
13 | /** @var string */ |
||
14 | private $addressBookViewClass; |
||
15 | |||
16 | public function __construct(string $addressBookViewClass) |
||
20 | |||
21 | /** |
||
22 | * {@inheritdoc} |
||
23 | */ |
||
24 | public function create(AddressInterface $address, CustomerInterface $customer): AddressBookView |
||
44 | } |
||
45 |