filePath = $filePath; } /** * @return string */ public function getFilePath() { return $this->filePath; } /** * Line number (1-based), or 0 if whole File / unknown. * * @param string $lineNumber */ public function setLineNumber($lineNumber) { $this->lineNumber = $lineNumber; } /** * @return string */ public function getLineNumber() { return $this->lineNumber; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(FindingLocation::class, 'Google_Service_OnDemandScanning_FindingLocation');