* @author Hassan Khan * @link https://github.com/noodlehaus/config * @license MIT */ abstract class AbstractFileParser implements FileParserInterface { /** * Path to the config file * * @var string */ protected $path; public function __construct($path) { $this->path = $path; } }