Skip to content

Commit ca095d8

Browse files
committed
fix types
1 parent bfe78cc commit ca095d8

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/system/Database/Live/LikeTest.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,14 +77,17 @@ public function testLikeCaseInsensitive(): void
7777
}
7878

7979
#[DataProvider('provideMultibyteCharacters')]
80-
public function testLikeCaseInsensitiveWithMultibyteCharacter($match, $result): void
80+
public function testLikeCaseInsensitiveWithMultibyteCharacter(string $match, string $result): void
8181
{
8282
$wai = $this->db->table('without_auto_increment')->like('value', $match, 'both', null, true)->get();
8383
$wai = $wai->getRow();
8484

8585
$this->assertSame($result, $wai->key);
8686
}
8787

88+
/**
89+
* @return iterable<string, array{0: string, 1: string}>
90+
*/
8891
public static function provideMultibyteCharacters(): iterable
8992
{
9093
yield from [

0 commit comments

Comments
 (0)