🎉
This commit is contained in:
15
vendor/spatie/ignition/src/Contracts/ConfigManager.php
vendored
Normal file
15
vendor/spatie/ignition/src/Contracts/ConfigManager.php
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
<?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;
|
||||
}
|
||||
Reference in New Issue
Block a user