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; /** * Interface for setting/merging user-defined configuration values into the configuration object */ interface MutableConfigurationInterface { /** * @param mixed $value * * @throws UnknownOptionException if $key contains a nested path which doesn't point to an array value */ public function set(string $key, $value): void; /** * @param array<string, mixed> $config */ public function merge(array $config = []): void; }