vendor/symfony/config/Loader/LoaderResolverInterface.php line 29

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Component\Config\Loader;
  11. /**
  12.  * LoaderResolverInterface selects a loader for a given resource.
  13.  *
  14.  * @author Fabien Potencier <fabien@symfony.com>
  15.  */
  16. interface LoaderResolverInterface
  17. {
  18.     /**
  19.      * Returns a loader able to load the resource.
  20.      *
  21.      * @param mixed       $resource A resource
  22.      * @param string|null $type     The resource type or null if unknown
  23.      *
  24.      * @return LoaderInterface|false
  25.      */
  26.     public function resolve($resourcestring $type null);
  27. }