Skip to content

Commit

Permalink
Merge pull request #7 from netlogix/bugfix/static-dataproviders
Browse files Browse the repository at this point in the history
BUGFIX: Make phpunit dataProviders static
  • Loading branch information
stephanschuler committed Jun 26, 2023
2 parents a3917d3 + 4fb1c9d commit 5fa90d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/Functional/Model/Program/ArgumentsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public function Arguments_can_be_empty($emptyValue): void
/**
* @return Traversable<string, array<false|0|''>>
*/
public function provideEmptyButNotNullArguments(): Traversable
public static function provideEmptyButNotNullArguments(): Traversable
{
yield 'false' => [false];
yield 'zero' => [0];
Expand Down

0 comments on commit 5fa90d4

Please sign in to comment.