| 1 | <?php |
||
| 12 | final class TaxonViewFactory implements TaxonViewFactoryInterface |
||
| 13 | { |
||
| 14 | /** @var ImageViewFactoryInterface */ |
||
| 15 | private $imageViewFactory; |
||
| 16 | |||
| 17 | /** @var string */ |
||
| 18 | private $taxonViewClass; |
||
| 19 | |||
| 20 | public function __construct(ImageViewFactoryInterface $imageViewFactory, string $taxonViewClass) |
||
| 25 | |||
| 26 | public function create(TaxonInterface $taxon, string $locale): TaxonView |
||
| 48 | } |
||
| 49 |