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 |
||
46 | |||
47 | public function getEnableRunnableSolutions(): bool |
||
57 | |||
58 | public function toArray(): array |
||
70 | |||
71 | protected function mergeWithDefaultConfig(array $options = []): array |
||
75 | } |
||
76 |