From c0dd9dde1391a9727331fb26489d1939791f933f Mon Sep 17 00:00:00 2001 From: Krishan Koenig Date: Tue, 3 Dec 2024 12:42:14 +0100 Subject: [PATCH] fix php7.4 compatibility --- src/Factories/UpdateProfilePayloadFactory.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) 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') ); } }