GlobFileLoader.php 875 B

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