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 6a06935 commit edd5d01
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/Factories/CreateProfilePayloadFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ class CreateProfilePayloadFactory extends Factory
public function create(): CreateProfilePayload
{
return new CreateProfilePayload(
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')
$this->get('name'),
$this->get('website'),
$this->get('email'),
$this->get('phone'),
$this->get('description'),
$this->get('countriesOfActivity'),
$this->get('businessCategory')
);
}
}

0 comments on commit edd5d01

Please sign in to comment.