/
home
/
sjslayjy
/
public_html
/
sag_latest
/
vendor
/
spatie
/
ignition
/
src
/
Contracts
/
Upload File
HOME
<?php namespace Spatie\Ignition\Contracts; interface ConfigManager { /** @return array<string, mixed> */ public function load(): array; /** @param array<string, mixed> $options */ public function save(array $options): bool; /** @return array<string, mixed> */ public function getPersistentInfo(): array; }