column = $column; } /** * @return int */ public function getColumn() { return $this->column; } /** * @param int */ public function setLine($line) { $this->line = $line; } /** * @return int */ public function getLine() { return $this->line; } /** * @param string */ public function setPath($path) { $this->path = $path; } /** * @return string */ public function getPath() { return $this->path; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(SourceLocation::class, 'Google_Service_CloudDebugger_SourceLocation');