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.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
php /
Symfony /
Component /
Config /
Delete
Unzip
Name
Size
Permission
Date
Action
Builder
[ DIR ]
drwxr-xr-x
2026-06-02 06:37
Definition
[ DIR ]
drwxr-xr-x
2026-06-02 06:37
Exception
[ DIR ]
drwxr-xr-x
2026-06-02 06:37
Loader
[ DIR ]
drwxr-xr-x
2026-06-02 06:37
Resource
[ DIR ]
drwxr-xr-x
2026-06-02 06:37
Util
[ DIR ]
drwxr-xr-x
2026-06-02 06:37
ConfigCache.php
1.5
KB
-rw-r--r--
2026-05-27 08:15
ConfigCacheFactory.php
1.08
KB
-rw-r--r--
2026-05-27 08:15
ConfigCacheFactoryInterface.php
958
B
-rw-r--r--
2026-05-27 08:15
ConfigCacheInterface.php
1.25
KB
-rw-r--r--
2026-05-27 08:15
FileLocator.php
2.59
KB
-rw-r--r--
2026-05-27 08:15
FileLocatorInterface.php
1.03
KB
-rw-r--r--
2026-05-27 08:15
ResourceCheckerConfigCache.php
5.52
KB
-rw-r--r--
2026-05-27 08:15
ResourceCheckerConfigCacheFactory.php
1.05
KB
-rw-r--r--
2026-05-27 08:15
ResourceCheckerInterface.php
1.2
KB
-rw-r--r--
2026-05-27 08:15
autoload.php
10.04
KB
-rw-r--r--
2026-05-27 22:18
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\Config; use Symfony\Component\Config\Exception\FileLocatorFileNotFoundException; /** * @author Fabien Potencier <fabien@symfony.com> */ interface FileLocatorInterface { /** * Returns a full path for a given file name. * * @param string $name The file name to locate * @param string|null $currentPath The current path * @param bool $first Whether to return the first occurrence or an array of filenames * * @return string|array The full path to the file or an array of file paths * * @throws \InvalidArgumentException If $name is empty * @throws FileLocatorFileNotFoundException If a file is not found */ public function locate(string $name, ?string $currentPath = null, bool $first = true); }