FileLocator.php 1.0 KB

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\HttpKernel\Config;
  11. use Symfony\Component\Config\FileLocator as BaseFileLocator;
  12. use Symfony\Component\HttpKernel\KernelInterface;
  13. /**
  14. * FileLocator uses the KernelInterface to locate resources in bundles.
  15. *
  16. * @author Fabien Potencier <fabien@symfony.com>
  17. */
  18. class FileLocator extends BaseFileLocator
  19. {
  20. public function __construct(
  21. private KernelInterface $kernel,
  22. ) {
  23. parent::__construct();
  24. }
  25. public function locate(string $file, ?string $currentPath = null, bool $first = true): string|array
  26. {
  27. if (isset($file[0]) && '@' === $file[0]) {
  28. $resource = $this->kernel->locateResource($file);
  29. return $first ? $resource : [$resource];
  30. }
  31. return parent::locate($file, $currentPath, $first);
  32. }
  33. }