linters[] = $linter; return $this; } public function addFileData($path, $data) { $this->fileData[$path] = $data; return $this; } public function pathExists($path) { if (idx($this->fileData, $path) !== null) { return true; } return parent::pathExists($path); } public function buildLinters() { return $this->linters; } }