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

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 string|null $type The resource type or null if unknown
  22.      */
  23.     public function resolve(mixed $resourcestring $type null): LoaderInterface|false;
  24. }