Skip to content

Commit c5cf54e

Browse files
authored
Update phpunit_bridge.rst
1 parent 82536e7 commit c5cf54e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

components/phpunit_bridge.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -425,16 +425,16 @@ call to the ``doSetUp()``, ``doTearDown()``, ``doSetUpBeforeClass()`` and
425425

426426
class MyTest extends TestCase
427427
{
428-
// when using the SetUpTearDownTrait, methods like doSetup() can
428+
// when using the SetUpTearDownTrait, methods like doSetUp() can
429429
// be defined with and without the 'void' return type, as you wish
430430
use SetUpTearDownTrait;
431431

432-
private function doSetup()
432+
private function doSetUp()
433433
{
434434
// ...
435435
}
436436

437-
protected function doSetup(): void
437+
protected function doSetUp(): void
438438
{
439439
// ...
440440
}

0 commit comments

Comments
 (0)