id = $sheetId; $this->index = $sheetIndex; $this->name = $sheetName; } /** * @return int ID of the sheet */ public function getId() { return $this->id; } /** * @return int Index of the sheet, based on order of creation (zero-based) */ public function getIndex() { return $this->index; } /** * @return string Name of the sheet */ public function getName() { return $this->name; } }