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