Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.144.132.48
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
vendor /
symfony /
runtime /
Delete
Unzip
Name
Size
Permission
Date
Action
Internal
[ DIR ]
drwxrwxr-x
2022-06-27 16:58
Resolver
[ DIR ]
drwxrwxr-x
2022-06-27 16:58
Runner
[ DIR ]
drwxrwxr-x
2022-06-27 16:58
CHANGELOG.md
254
B
-rw-rw-r--
2022-06-27 16:58
GenericRuntime.php
7.65
KB
-rw-rw-r--
2022-06-27 16:58
LICENSE
1.04
KB
-rw-rw-r--
2022-06-27 16:58
README.md
481
B
-rw-rw-r--
2022-06-27 16:58
ResolverInterface.php
458
B
-rw-rw-r--
2022-06-27 16:58
RunnerInterface.php
388
B
-rw-rw-r--
2022-06-27 16:58
RuntimeInterface.php
1
KB
-rw-rw-r--
2022-06-27 16:58
SymfonyRuntime.php
9.23
KB
-rw-rw-r--
2022-06-27 16:58
composer.json
1.24
KB
-rw-rw-r--
2022-06-27 16:58
Save
Rename
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Runtime; /** * Enables decoupling applications from global state. * * @author Nicolas Grekas <p@tchwork.com> */ interface RuntimeInterface { /** * Returns a resolver that should compute the arguments of a callable. * * The callable itself should return an object that represents the application to pass to the getRunner() method. */ public function getResolver(callable $callable, \ReflectionFunction $reflector = null): ResolverInterface; /** * Returns a callable that knows how to run the passed object and that returns its exit status as int. * * The passed object is typically created by calling ResolverInterface::resolve(). */ public function getRunner(?object $application): RunnerInterface; }