Commit 13c4e86c authored by Fabien Potencier's avatar Fabien Potencier

minor #936 Change the visibility of WebTestCase::setUp to keep the same as in PHPUnit (lyrixx)

This PR was merged into the 2.0.x-dev branch.

Discussion
----------

Change the visibility of WebTestCase::setUp to keep the same as in PHPUnit

see https://github.com/sebastianbergmann/phpunit/blob/ea293f782b3e001c9b7eeb5bdc2d545e4c091fdb/src/Framework/TestCase.php#L1834

Commits
-------

7cddf2d0 Change the visibility of WebTestCase::setUp to keep the same as in PHPUnit
parents 13f7d274 7cddf2d0
...@@ -29,7 +29,7 @@ abstract class WebTestCase extends \PHPUnit_Framework_TestCase ...@@ -29,7 +29,7 @@ abstract class WebTestCase extends \PHPUnit_Framework_TestCase
* Note: Child classes that define a setUp method must call * Note: Child classes that define a setUp method must call
* parent::setUp(). * parent::setUp().
*/ */
public function setUp() protected function setUp()
{ {
$this->app = $this->createApplication(); $this->app = $this->createApplication();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment