file; } public function getOffset(): int { return $this->offset; } public function getLine(): int { return $this->file->getLine($this->offset); } public function getColumn(): int { return $this->file->getColumn($this->offset); } public function getSourceUrl(): ?UriInterface { return $this->file->getSourceUrl(); } public function pointSpan(): FileSpan { return new ConcreteFileSpan($this->file, $this->offset, $this->offset); } }