| 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 getTheme(): ?string |
||
| 27 | |||
| 28 | public function getEnableShareButton(): bool |
||
| 32 | |||
| 33 | public function toArray(): array |
||
| 42 | |||
| 43 | protected function mergeWithDefaultConfig(array $options = []): array |
||
| 47 | } |
||
| 48 |