uawdijnntqw1x1x1
IP : 216.73.217.31
Hostname : webm015.cluster127.gra.hosting.ovh.net
Kernel : Linux webm015.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
OS : Linux
PATH:
/
home
/
pteabiscqq
/
www
/
libraries
/
quix
/
src
/
.
/
Config
/
Loaders
/
YamlConfigLoader.php
/
/
<?php namespace ThemeXpert\Config\Loaders; use Symfony\Component\Yaml\Yaml; use Symfony\Component\Config\Loader\FileLoader; class YamlConfigLoader extends FileLoader { /** * Load all YML configuration files. * * @param mixed $resource * @param null $type * * @return array */ public function load($resource, $type = null) { $files = $this->getLocator()->locate($resource, null, false); $elements = []; foreach ($files as $file) { # Parse YML file. $config = Yaml::parse(file_get_contents($file)); $elements[$file] = $config; } return $elements; } /** * Determines the configuration file is YML or not. * * @param mixed $resource * @param null $type * * @return bool */ public function supports($resource, $type = null) { return is_string($resource) && 'yml' === pathinfo( $resource, PATHINFO_EXTENSION ); } }
/home/pteabiscqq/www/libraries/quix/src/./Config/Loaders/YamlConfigLoader.php