16 lines
334 B
PHP
16 lines
334 B
PHP
<?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;
|
|
}
|