for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Health\Checks\File;
use Health\Checks\HealthCheckInterface;
class Ini extends Base implements HealthCheckInterface
{
/**
*
* @param string $file
* @return boolean
*/
protected function isValid($file)
return @parse_ini_file($file) !== false;
}