Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.217.117
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
v3.cesa.co.za /
vendor /
symfony /
runtime /
Delete
Unzip
Name
Size
Permission
Date
Action
Internal
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Resolver
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Runner
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
.htaccess
237
B
-r-xr-xr-x
2026-08-17 03:12
CHANGELOG.md
339
B
-rwxrwxr-x
2025-12-05 10:55
GenericRuntime.php
7.31
KB
-rwxrwxr-x
2025-12-05 10:55
LICENSE
1.04
KB
-rwxrwxr-x
2025-12-05 10:55
README.md
481
B
-rwxrwxr-x
2025-12-05 10:55
ResolverInterface.php
458
B
-rwxrwxr-x
2025-12-05 10:55
RunnerInterface.php
388
B
-rwxrwxr-x
2025-12-05 10:55
RuntimeInterface.php
1.01
KB
-rwxrwxr-x
2025-12-05 10:55
SymfonyRuntime.php
9.47
KB
-rwxrwxr-x
2025-12-05 10:55
composer.json
1.22
KB
-rwxrwxr-x
2025-12-05 10:55
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; }