File "ConfigManager.php"

Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/vendor/spatie/ignition/src/Contracts/ConfigManager.php
File size: 334 bytes
MIME-type: text/x-php
Charset: utf-8

<?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;
}