getRecord()->id; } function getCreator(): ?User { return (new Users)->get($this->getRecord()->creator_id); } function getName(): string { return $this->getRecord()->title; } function getCanonicalName(): string { return $this->getName(); } function getDescription(): ?string { return $this->getRecord()->description; } function isClosed(): ?bool { return (bool) $this->getRecord()->closed; } }