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