| 1 | <?php |
||
| 10 | final class CustomerViewFactory implements CustomerViewFactoryInterface |
||
| 11 | { |
||
| 12 | /** @var string */ |
||
| 13 | private $customerViewClass; |
||
| 14 | |||
| 15 | public function __construct(string $customerViewClass) |
||
| 19 | |||
| 20 | /** |
||
| 21 | * {@inheritdoc} |
||
| 22 | */ |
||
| 23 | public function create(CustomerInterface $customer): CustomerView |
||
| 39 | } |
||
| 40 |