. */ namespace Sikofitt\Config\Loader; use Symfony\Component\Config\Loader\FileLoader; use Symfony\Component\Yaml\Yaml; class YamlFileLoader extends FileLoader { /** * Loads a resource. * * @param mixed $resource The resource * @param string|null $type The resource type or null if unknown * * @throws \Exception If something went wrong * @return mixed */ public function load($resource, $type = null) { return Yaml::parse(file_get_contents($resource)); } /** * Returns whether this class supports the given resource. * * @param mixed $resource A resource * @param string|null $type The resource type or null if unknown * * @return bool True if this class supports the given resource, false otherwise */ public function supports($resource, $type = null) { return is_string($resource) && in_array(pathinfo($resource, PATHINFO_EXTENSION), ['yaml', 'yml'], true); } }