Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/public/uploads/../../vendor/webklex/.././unicodeveloper/../spatie/././ignition/./src/Contracts
الملفات الموجودة في هذا الـ Path:
.
..
BaseSolution.php
ConfigManager.php
HasSolutionsForThrowable.php
ProvidesSolution.php
RunnableSolution.php
Solution.php
SolutionProviderRepository.php

مشاهدة ملف: ConfigManager.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;
}