relation = $group ?? new NullGroup(); $this->duty = $duty; } /** * Get relation object. * * @return Group * * @since 1.0.0 */ public function getRelation() : Group { return $this->relation; } /** * {@inheritdoc} */ public function toArray() : array { return [ 'id' => $this->id, 'duty' => $this->duty, 'relation' => $this->relation, ]; } /** * {@inheritdoc} */ public function jsonSerialize() : mixed { return $this->toArray(); } }