name = $name; } public function getName() { return $this->name; } public function getDepth(): int { return $this->depth; } public function getOperator(): ?string { return null; } public function isRef(): bool { return $this->reference; } /** @psalm-param ?class-string $scope */ public function isAccessible(?string $scope): bool { return true; } public function getAccessPath(): ?string { return $this->access_path; } }