Skip to content
This repository has been archived by the owner on Jan 8, 2020. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/4783'
Browse files Browse the repository at this point in the history
Close #4783
  • Loading branch information
weierophinney committed Jul 17, 2013
2 parents 6bc8d0f + 698d5a5 commit 9421166
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Expand Up @@ -53,7 +53,7 @@ abstract class AbstractControllerTestCase extends PHPUnit_Framework_TestCase
/**
* Reset the application for isolation
*/
public function setUp()
protected function setUp()
{
$this->usedConsoleBackup = Console::isConsole();
$this->reset();
Expand All @@ -62,7 +62,7 @@ public function setUp()
/**
* Restore params
*/
public function tearDown()
protected function tearDown()
{
Console::overrideIsConsole($this->usedConsoleBackup);
}
Expand Down
Expand Up @@ -19,7 +19,7 @@
*/
class AbstractConsoleControllerTestCaseTest extends AbstractConsoleControllerTestCase
{
public function setUp()
protected function setUp()
{
$this->setApplicationConfig(
include __DIR__ . '/../../_files/application.config.php'
Expand Down
Expand Up @@ -41,7 +41,7 @@ public static function rmdir($dir)
return rmdir($dir);
}

public function setUp()
protected function setUp()
{
$this->tearDownCacheDir();
Console::overrideIsConsole(null);
Expand All @@ -51,7 +51,7 @@ public function setUp()
parent::setUp();
}

public function tearDown()
protected function tearDown()
{
$this->tearDownCacheDir();
parent::tearDown();
Expand Down

0 comments on commit 9421166

Please sign in to comment.