createdBy = new NullAccount(); $this->createdAt = new \DateTimeImmutable(); } /** * {@inheritdoc} */ public function jsonSerialize() : mixed { return [ 'id' => $this->id, 'title' => $this->title, 'content' => $this->content, 'list' => $this->list, 'ref' => $this->ref, 'status' => $this->status, 'createdAt' => $this->createdAt, 'createdBy' => $this->createdBy, ]; } use \Modules\Media\Models\MediaListTrait; }