Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fd810cd

Browse files
committed
Uses protected for test functions
1 parent 9d658e9 commit fd810cd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Symfony/Component/Messenger/Tests/Command/DebugCommandTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@
2626
*/
2727
class DebugCommandTest extends TestCase
2828
{
29-
public function setUp()
29+
protected function setUp()
3030
{
3131
putenv('COLUMNS='.(119 + strlen(PHP_EOL)));
3232
}
3333

34-
public function tearDown()
34+
protected function tearDown()
3535
{
3636
putenv('COLUMNS=');
3737
}

0 commit comments

Comments
 (0)