/opt/alt/php55/usr/share/pear/Symfony/Component/Config/Loader
NameSizeModeActions
DelegatingLoader.php15770644editdlrm
FileLoader.php33880644editdlrm
Loader.php19990644editdlrm
LoaderInterface.php13370644editdlrm
LoaderResolver.php19290644editdlrm
LoaderResolverInterface.php7300644editdlrm
Edit: /opt/alt/php55/usr/share/pear/Symfony/Component/Config/Loader/LoaderResolverInterface.php (730B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Config\Loader; /** * LoaderResolverInterface selects a loader for a given resource. * * @author Fabien Potencier */ interface LoaderResolverInterface { /** * Returns a loader able to load the resource. * * @param mixed $resource A resource * @param string $type The resource type * * @return LoaderInterface A LoaderInterface instance */ public function resolve($resource, $type = null); }