/** * @param string $path * @param bool|false $processSections */ public function __construct($path, $processSections = false) { $this->processSections = $processSections; parent::__construct($path, self::FILE_EXTENSION); }
/** * @param string $path */ public function __construct($path) { $this->parser = new Parser(); parent::__construct($path, self::FILE_EXTENSION); }
/** * @param string $path */ public function __construct($path) { parent::__construct($path, self::FILE_EXTENSION); }