for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace BlueEvent\Event\Config;
use Zend\Config\Reader\Ini;
class IniConfig implements ConfigReader
{
/**
* @param string $path
* @return array
*/
public function readConfig($path)
$reader = new Ini;
return $reader->fromFile($path);
}