value; } /** * Set the range value. */ public function setRange(string $range): self { if (!empty($range)) { $this->value = $range; } return $this; } public function getCellsInRange(): array { $range = $this->value; if (substr($range, 0, 1) === '=') { $range = substr($range, 1); } return Coordinate::extractAllCellReferencesInRange($range); } }