factories[$property] = $factory; return $this; } protected function runFactory(string $property): mixed { if (isset($this->factories[$property])) { return $this->factories[$property]->run(); } return null; } public function jsonSerialize(): mixed { return [ 'id' => $this->id ]; } }