Skip to content

Commit

Permalink
Bugfix fatal error in PHP 8.0: Return type must be void when declared
Browse files Browse the repository at this point in the history
  • Loading branch information
davidwesdijk committed Aug 20, 2021
1 parent 53084ba commit e368dbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Resolvers/Resolver.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public function __get(string $property): ?string
*
* @return string|null
*/
public function __set(string $property, ?string $value): ?string
public function __set(string $property, ?string $value)
{
return $this->updateOrCreateValue($property, $value)->{HasEntityAttributeValues::$value};
}
Expand Down

0 comments on commit e368dbe

Please sign in to comment.