1 | <?php |
||
9 | class FilesystemThemeProvider implements ThemeProviderInterface |
||
10 | { |
||
11 | /** |
||
12 | * @var null|array |
||
13 | */ |
||
14 | protected $themeList = null; |
||
15 | |||
16 | /** |
||
17 | * @var array |
||
18 | */ |
||
19 | protected $paths = array(); |
||
20 | |||
21 | /** |
||
22 | * Constructor. |
||
23 | * |
||
24 | * @param array $paths |
||
25 | */ |
||
26 | public function __construct(array $paths = array()) |
||
30 | |||
31 | /** |
||
32 | * {@inheritdoc} |
||
33 | */ |
||
34 | public function getThemeList() |
||
53 | } |
||
54 |