/var/www/vhosts/ihelp.ro/_OLD/vendor/symfony/config
NameSizeModeActions
Definition/-0755rm
Exception/-0755rm
Loader/-0755rm
Resource/-0755rm
Util/-0755rm
CHANGELOG.md41600644editdlrm
composer.json13150644editdlrm
ConfigCache.php15840644editdlrm
ConfigCacheFactory.php11050644editdlrm
ConfigCacheFactoryInterface.php9770644editdlrm
ConfigCacheInterface.php13350644editdlrm
FileLocator.php25380644editdlrm
FileLocatorInterface.php10570644editdlrm
LICENSE10650644editdlrm
README.md6320644editdlrm
ResourceCheckerConfigCache.php56600644editdlrm
ResourceCheckerConfigCacheFactory.php10670644editdlrm
ResourceCheckerInterface.php13820644editdlrm
Edit: /var/www/vhosts/ihelp.ro/_OLD/vendor/symfony/config/FileLocatorInterface.php (1057B)
* * 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 */ 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); }