for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Wandu\Config\Loader;
class JsonLoader extends LoaderAbstract
{
/**
* {@inheritdoc}
*/
public function load()
return json_decode(file_get_contents($this->fileName), true);
}