type = new NullTaskAttributeType(); $this->value = new NullTaskAttributeValue(); } /** * {@inheritdoc} */ public function toArray() : array { return [ 'id' => $this->id, 'task' => $this->task, 'type' => $this->type, 'value' => $this->value, ]; } /** * {@inheritdoc} */ public function jsonSerialize() : mixed { return $this->toArray(); } }