Skip to content

Commit 0be3116

Browse files
committed
test: add @return
1 parent d30c061 commit 0be3116

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tests/system/Helpers/TextHelperTest.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,9 @@ public function testReduceMultiples(string $str, string $expected): void
8989
$this->assertSame($expected, reduce_multiples($str));
9090
}
9191

92+
/**
93+
* @return iterable<string, list<string>>
94+
*/
9295
public static function provideReduceMultiples(): iterable
9396
{
9497
yield from [
@@ -105,6 +108,9 @@ public function testReduceMultiplesWithTrim(string $str, string $expected): void
105108
$this->assertSame($expected, reduce_multiples($str, ',', true));
106109
}
107110

111+
/**
112+
* @return iterable<string, list<string>>
113+
*/
108114
public static function provideReduceMultiplesWithTrim(): iterable
109115
{
110116
yield from [

0 commit comments

Comments
 (0)