Skip to content

Commit 33fde38

Browse files
chadicusphilbti
andauthored
Add missing void return type hint
Co-authored-by: philbti <[email protected]>
1 parent eb4df58 commit 33fde38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Filter/StringsTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -556,7 +556,7 @@ public function provideRedactFailsOnBadInput() : array
556556
* @test
557557
* @dataProvider provideStripEmoji
558558
*/
559-
public function stripEmoji(string $input, string $expectedValue)
559+
public function stripEmoji(string $input, string $expectedValue): void
560560
{
561561
$actualValue = Strings::stripEmoji($input);
562562
$this->assertSame($expectedValue, $actualValue);

0 commit comments

Comments
 (0)