/usr/share/php/Symfony/Component/DependencyInjection/Loader
NameSizeModeActions
Configurator/-0755rm
schema/-0755rm
ClosureLoader.php11430644editdlrm
DirectoryLoader.php13360644editdlrm
FileLoader.php103270644editdlrm
GlobFileLoader.php8970644editdlrm
IniFileLoader.php32150644editdlrm
PhpFileLoader.php83320644editdlrm
XmlFileLoader.php334140644editdlrm
YamlFileLoader.php409150644editdlrm
Edit: /usr/share/php/Symfony/Component/DependencyInjection/Loader/GlobFileLoader.php (897B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\DependencyInjection\Loader; /** * GlobFileLoader loads files from a glob pattern. * * @author Nicolas Grekas */ class GlobFileLoader extends FileLoader { /** * {@inheritdoc} */ public function load($resource, string $type = null) { foreach ($this->glob($resource, false, $globResource) as $path => $info) { $this->import($path); } $this->container->addResource($globResource); return null; } /** * {@inheritdoc} */ public function supports($resource, string $type = null) { return 'glob' === $type; } }