🚿 make data providers static (PHPUnit 10...)

This commit is contained in:
smiley
2023-03-09 23:38:20 +01:00
parent cf026a3eed
commit 43c49727f1
14 changed files with 25 additions and 25 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ final class AlphaNumTest extends DataInterfaceTestAbstract{
/**
* isAlphaNum() should pass on the 45 defined characters and fail on anything else (e.g. lowercase)
*/
public function stringValidateProvider():array{
public static function stringValidateProvider():array{
return [
['ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890 $%*+-./:', true],
['abc', false],