Skip to content

Commit 71e7144

Browse files
committed
minor #13938 Update phpunit_bridge.rst (atailouloute)
This PR was merged into the 4.4 branch. Discussion ---------- Update phpunit_bridge.rst Commits ------- c5cf54e Update phpunit_bridge.rst
2 parents 2a80f01 + c5cf54e commit 71e7144

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)