vendor/symfony/dependency-injection/Loader/GlobFileLoader.php line 32

  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\DependencyInjection\Loader;
  11. /**
  12.  * GlobFileLoader loads files from a glob pattern.
  13.  *
  14.  * @author Nicolas Grekas <p@tchwork.com>
  15.  */
  16. class GlobFileLoader extends FileLoader
  17. {
  18.     public function load(mixed $resourcestring $type null): mixed
  19.     {
  20.         foreach ($this->glob($resourcefalse$globResource) as $path => $info) {
  21.             $this->import($path);
  22.         }
  23.         $this->container->addResource($globResource);
  24.         return null;
  25.     }
  26.     public function supports(mixed $resourcestring $type null): bool
  27.     {
  28.         return 'glob' === $type;
  29.     }
  30. }