Closing and opening braces in Yii2 coding standards.

This commit is contained in:
maximal 2014-02-24 20:32:15 +04:00
parent c2c3c22ff5
commit 4e188239cf
2 changed files with 0 additions and 4 deletions

View File

@ -7,7 +7,6 @@ use yii\codeception\TestCase;
class ContactFormTest extends TestCase
{
use \Codeception\Specify;
protected function setUp()
@ -56,5 +55,4 @@ class ContactFormTest extends TestCase
{
return Yii::getAlias(Yii::$app->mail->fileTransportPath) . '/testing_message.eml';
}
}

View File

@ -8,7 +8,6 @@ use app\models\User;
class LoginFormTest extends TestCase
{
use \Codeception\Specify;
protected function tearDown()
@ -64,5 +63,4 @@ class LoginFormTest extends TestCase
$loginForm->expects($this->any())->method('getUser')->will($this->returnValue($user));
return $loginForm;
}
}