createdAt = new \DateTimeImmutable('now'); $this->createdBy = new NullAccount(); } /** * {@inheritdoc} */ public function toArray() : array { return [ 'id' => $this->id, 'description' => $this->description, 'descriptionRaw' => $this->descriptionRaw, 'card' => $this->card, 'createdBy' => $this->createdBy, 'createdAt' => $this->createdAt, 'media' => $this->files, ]; } /** * {@inheritdoc} */ public function jsonSerialize() : mixed { return $this->toArray(); } use \Modules\Media\Models\MediaListTrait; }