1 | <?php |
||
8 | class IgnitionConfig implements Arrayable |
||
9 | { |
||
10 | /** @var array */ |
||
11 | protected $options; |
||
12 | |||
13 | public function __construct(array $options = []) |
||
17 | |||
18 | public function getEditor(): ?string |
||
22 | |||
23 | public function getRemoteSitesPath(): ?string |
||
24 | { |
||
25 | return Arr::get($this->options, 'remote-sites-path'); |
||
26 | } |
||
27 | |||
28 | public function getLocalSitesPath(): ?string |
||
32 | |||
33 | public function getTheme(): ?string |
||
37 | |||
38 | public function getEnableShareButton(): bool |
||
42 | |||
43 | public function toArray(): array |
||
54 | |||
55 | protected function mergeWithDefaultConfig(array $options = []): array |
||
59 | } |
||
60 |