1 | <?php |
||
19 | final class CustomBookFactory |
||
20 | { |
||
21 | /** @var string */ |
||
22 | private $className; |
||
23 | |||
24 | /** @var TranslationLocaleProviderInterface */ |
||
25 | private $localeProvider; |
||
26 | |||
27 | public function __construct(string $className, TranslationLocaleProviderInterface $localeProvider) |
||
32 | |||
33 | public function createCustom(): Book |
||
43 | } |
||
44 |