Skip to content
This repository has been archived by the owner on Mar 18, 2024. It is now read-only.

Commit

Permalink
Fix phpstan-error-unsafe-usage-of-new-static
Browse files Browse the repository at this point in the history
  • Loading branch information
SamuelMwangiW committed Sep 23, 2022
1 parent 2baaaaf commit 67b99c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Linode.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class Linode
{
public static function __callStatic(string $name, array $arguments)
{
return (new static())->$name(...$arguments);
return (new Linode())->$name(...$arguments);
}

/**
Expand Down

0 comments on commit 67b99c2

Please sign in to comment.