| 1 | <?php |
||
| 20 | final class CustomerAfterCheckoutFactory implements CustomerAfterCheckoutFactoryInterface |
||
| 21 | { |
||
| 22 | /** @var FactoryInterface */ |
||
| 23 | private $baseCustomerFactory; |
||
| 24 | |||
| 25 | public function __construct(FactoryInterface $baseCustomerFactory) |
||
| 29 | |||
| 30 | public function createNew(): CustomerInterface |
||
| 37 | |||
| 38 | public function createAfterCheckout(OrderInterface $order): CustomerInterface |
||
| 51 | } |
||
| 52 |