Skip to content

Commit

Permalink
Update Yii to 1.1.24dev
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed May 11, 2021
1 parent dbca078 commit 50613da
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion framework/cli/views/webapp/protected/tests/WebTestCase.php
Expand Up @@ -17,7 +17,7 @@ class WebTestCase extends CWebTestCase
* Sets up before each test method runs.
* This mainly sets the base URL for the test application.
*/
protected function setUp()
protected function setUp(): void
{
parent::setUp();
$this->setBrowserUrl(TEST_BASE_URL);
Expand Down
2 changes: 1 addition & 1 deletion framework/test/CDbTestCase.php
Expand Up @@ -111,7 +111,7 @@ public function getFixtureRecord($name,$alias)
* If you override this method, make sure the parent implementation is invoked.
* Otherwise, the database fixtures will not be managed properly.
*/
protected function setUp()
protected function setUp(): void
{
parent::setUp();
if(is_array($this->fixtures))
Expand Down
2 changes: 1 addition & 1 deletion framework/test/CWebTestCase.php
Expand Up @@ -97,7 +97,7 @@ public function getFixtureRecord($name,$alias)
* If you override this method, make sure the parent implementation is invoked.
* Otherwise, the database fixtures will not be managed properly.
*/
protected function setUp()
protected function setUp(): void
{
parent::setUp();
if(is_array($this->fixtures))
Expand Down

0 comments on commit 50613da

Please sign in to comment.