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