1 | <?php |
||
20 | class ContainerWidgetFactory |
||
21 | { |
||
22 | /** |
||
23 | * @var string |
||
24 | */ |
||
25 | private $className; |
||
26 | |||
27 | /** |
||
28 | * Factory constructor. |
||
29 | * |
||
30 | * @param string $className |
||
31 | */ |
||
32 | public function __construct($className) |
||
36 | |||
37 | /** |
||
38 | * {@inheritdoc} |
||
39 | */ |
||
40 | public function create(ContainerInterface $container, WidgetModelInterface $widget) |
||
44 | } |
||
45 |