| 1 | <?php |
||
| 21 | class AddressFactory implements AddressFactoryInterface |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @var FactoryInterface |
||
| 25 | */ |
||
| 26 | private $decoratedFactory; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @param FactoryInterface $decoratedFactory |
||
| 30 | */ |
||
| 31 | public function __construct(FactoryInterface $decoratedFactory) |
||
| 35 | |||
| 36 | /** |
||
| 37 | * {@inheritdoc} |
||
| 38 | */ |
||
| 39 | public function createNew() |
||
| 43 | |||
| 44 | /** |
||
| 45 | * {@inheritdoc} |
||
| 46 | */ |
||
| 47 | public function createWithCustomer(CustomerInterface $customer) |
||
| 55 | } |
||
| 56 |