| 1 | <?php |
||
| 20 | final class ThemeFactory implements ThemeFactoryInterface |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * @var FactoryInterface |
||
| 24 | */ |
||
| 25 | private $basicThemeFactory; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @param FactoryInterface $basicThemeFactory |
||
| 29 | */ |
||
| 30 | public function __construct(FactoryInterface $basicThemeFactory) |
||
| 34 | |||
| 35 | /** |
||
| 36 | * {@inheritdoc} |
||
| 37 | */ |
||
| 38 | public function createFromArray(array $themeData) |
||
| 64 | } |
||
| 65 |