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

Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Uses protected for test functions
  • Loading branch information
sroze committed May 20, 2018
commit fd810cdee02920d6f1797980e829588e69da877d
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@
*/
class DebugCommandTest extends TestCase
{
public function setUp()
protected function setUp()
{
putenv('COLUMNS='.(119 + strlen(PHP_EOL)));
}

public function tearDown()
protected function tearDown()
{
putenv('COLUMNS=');
}
Expand Down