Skip to content

Commit 318fb8b

Browse files
Fix function static dataprovider. (#622)
1 parent 2c26fee commit 318fb8b

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

tests/Db/Helper/UuidHelperTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,14 @@ public function testToUuidFailed($blobUuid, $expected): void
5555
$this->assertEquals($expected, $uuid);
5656
}
5757

58-
public function successUuids(): array
58+
public static function successUuids(): array
5959
{
6060
return [
6161
['738146be-87b1-49f2-9913-36142fb6fcbe'],
6262
];
6363
}
6464

65-
public function incorrectUuids(): array
65+
public static function incorrectUuids(): array
6666
{
6767
return [
6868
['738146be-87b149f2-9913-36142fb6fcbe'],
@@ -71,7 +71,7 @@ public function incorrectUuids(): array
7171
];
7272
}
7373

74-
public function blobUuids(): array
74+
public static function blobUuids(): array
7575
{
7676
return [
7777
['738146be-87b1-49f2-9913-36142fb6fcbe', '738146be-87b1-49f2-9913-36142fb6fcbe'],
@@ -80,7 +80,7 @@ public function blobUuids(): array
8080
];
8181
}
8282

83-
public function incorrectBlobUuids(): array
83+
public static function incorrectBlobUuids(): array
8484
{
8585
return [
8686
['738146be-87b1-49f2-9913-36142fbfcbe', '738146be-87b1-49f2-9913-36142fb6fcbe'],

0 commit comments

Comments
 (0)