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

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\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.     /**
  19.      * {@inheritdoc}
  20.      */
  21.     public function load($resourcestring $type null)
  22.     {
  23.         foreach ($this->glob($resourcefalse$globResource) as $path => $info) {
  24.             $this->import($path);
  25.         }
  26.         $this->container->addResource($globResource);
  27.         return null;
  28.     }
  29.     /**
  30.      * {@inheritdoc}
  31.      */
  32.     public function supports($resourcestring $type null)
  33.     {
  34.         return 'glob' === $type;
  35.     }
  36. }