diff --git a/src/Factories/UpdateProfilePayloadFactory.php b/src/Factories/UpdateProfilePayloadFactory.php index acda6c70..b58d2243 100644 --- a/src/Factories/UpdateProfilePayloadFactory.php +++ b/src/Factories/UpdateProfilePayloadFactory.php @@ -9,14 +9,14 @@ class UpdateProfilePayloadFactory extends Factory public function create(): UpdateProfilePayload { return new UpdateProfilePayload( - name: $this->get('name'), - website: $this->get('website'), - email: $this->get('email'), - phone: $this->get('phone'), - description: $this->get('description'), - countriesOfActivity: $this->get('countriesOfActivity'), - businessCategory: $this->get('businessCategory'), - mode: $this->get('mode') + $this->get('name'), + $this->get('website'), + $this->get('email'), + $this->get('phone'), + $this->get('description'), + $this->get('countriesOfActivity'), + $this->get('businessCategory'), + $this->get('mode') ); } }