Skip to content

Commit

Permalink
fix php7.4 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
Naoray committed Dec 3, 2024
1 parent edd5d01 commit c0dd9dd
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/Factories/UpdateProfilePayloadFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -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')
);
}
}

0 comments on commit c0dd9dd

Please sign in to comment.