for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Wandu\Config\Loader;
use Symfony\Component\Yaml\Yaml;
class YmlLoader extends LoaderAbstract
{
/**
* {@inheritdoc}
*/
public function load()
return Yaml::parse(file_get_contents($this->fileName));
}