for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Wandu\Config\Loader;
use M1\Env\Parser;
class EnvLoader extends LoaderAbstract
{
/**
* {@inheritdoc}
*/
public function load()
return (new Parser(file_get_contents($this->fileName)))->getContent();
}