| 1 | <?php |
||
| 11 | final class AddressBookViewFactory implements AddressBookViewFactoryInterface |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var AddressViewFactoryInterface |
||
| 15 | */ |
||
| 16 | private $addressViewFactory; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * AddressBookViewFactory constructor. |
||
| 20 | * |
||
| 21 | * @param AddressViewFactoryInterface $addressViewFactory |
||
| 22 | */ |
||
| 23 | public function __construct( |
||
| 28 | |||
| 29 | public function create(?AddressInterface $address, Collection $otherAddress): AddressBookView |
||
| 41 | } |
||
| 42 |