owner = new NullAccount(); $this->organization = new NullAccount(); $this->createdAt = new \DateTimeImmutable('now'); } /** * {@inheritdoc} */ public function toArray() : array { return [ 'id' => $this->id, 'createdAt' => $this->createdAt, 'owner' => $this->owner, ]; } /** * {@inheritdoc} */ public function jsonSerialize() : mixed { return $this->toArray(); } }