Skip to content

Commit f5b1a96

Browse files
authored
Update writing-tests-for-phpunit.rst
sebastianbergmann#225
1 parent f1255b3 commit f5b1a96

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/writing-tests-for-phpunit.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -485,14 +485,14 @@ See :numref:`writing-tests-for-phpunit.data-providers.examples.DependencyAndData
485485
return [['provider1'], ['provider2']];
486486
}
487487
488-
public function testProducerFirst(): void
488+
public function testProducerFirst(): string
489489
{
490490
$this->assertTrue(true);
491491
492492
return 'first';
493493
}
494494
495-
public function testProducerSecond(): void
495+
public function testProducerSecond(): string
496496
{
497497
$this->assertTrue(true);
498498

0 commit comments

Comments
 (0)