| 1 | <?php |
||
| 10 | final class ProductReviewViewFactory implements ProductReviewViewFactoryInterface |
||
| 11 | { |
||
| 12 | /** @var string */ |
||
| 13 | private $productReviewViewClass; |
||
| 14 | |||
| 15 | public function __construct(string $productReviewViewClass) |
||
| 19 | |||
| 20 | /** |
||
| 21 | * {@inheritdoc} |
||
| 22 | */ |
||
| 23 | public function create(ProductReview $productReview): ProductReviewView |
||
| 35 | } |
||
| 36 |