| 1 | <?php declare(strict_types=1); |
||
| 5 | final class ThemeConfigFactory |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @var ThemeConfigOptionsResolver |
||
| 9 | */ |
||
| 10 | private $themeConfigOptionsResolver; |
||
| 11 | |||
| 12 | public function __construct(ThemeConfigOptionsResolver $themeConfigOptionsResolver) |
||
| 16 | |||
| 17 | 26 | public function create(string $filePath): ThemeConfig |
|
| 21 | } |
||
| 22 |