columnSpan = $columnSpan; } /** * @return int */ public function getColumnSpan() { return $this->columnSpan; } /** * @param TableCellLocation */ public function setLocation(TableCellLocation $location) { $this->location = $location; } /** * @return TableCellLocation */ public function getLocation() { return $this->location; } /** * @param int */ public function setRowSpan($rowSpan) { $this->rowSpan = $rowSpan; } /** * @return int */ public function getRowSpan() { return $this->rowSpan; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(TableRange::class, 'Google_Service_Slides_TableRange');