1 | <?php |
||
19 | class FactoryDefinition implements DefinitionInterface |
||
20 | { |
||
21 | /** |
||
22 | * @var string |
||
23 | */ |
||
24 | private $factoryClass; |
||
25 | |||
26 | /** |
||
27 | * @param string $factoryClass |
||
28 | */ |
||
29 | 5 | public function __construct(string $factoryClass) |
|
33 | |||
34 | /** |
||
35 | * @return string |
||
36 | */ |
||
37 | 5 | public function getFactoryClass(): string |
|
41 | } |
||
42 |