taskElement = $taskElement ?? new TaskElement(); } /** * {@inheritdoc} */ public function toArray() : array { return [ 'id' => $this->id, 'time' => $this->time, 'ticket' => $this->ticket, 'taskElement' => $this->taskElement, ]; } /** * {@inheritdoc} */ public function jsonSerialize() : mixed { return $this->toArray(); } }