Commit a7fc9143 by maximal

Closing and opening braces in Yii2 coding standards.

parent da07230a
...@@ -7,7 +7,6 @@ use yii\codeception\TestCase; ...@@ -7,7 +7,6 @@ use yii\codeception\TestCase;
class ContactFormTest extends TestCase class ContactFormTest extends TestCase
{ {
use \Codeception\Specify; use \Codeception\Specify;
protected function setUp() protected function setUp()
...@@ -56,5 +55,4 @@ class ContactFormTest extends TestCase ...@@ -56,5 +55,4 @@ class ContactFormTest extends TestCase
{ {
return Yii::getAlias(Yii::$app->mail->fileTransportPath) . '/testing_message.eml'; return Yii::getAlias(Yii::$app->mail->fileTransportPath) . '/testing_message.eml';
} }
} }
...@@ -8,7 +8,6 @@ use app\models\User; ...@@ -8,7 +8,6 @@ use app\models\User;
class LoginFormTest extends TestCase class LoginFormTest extends TestCase
{ {
use \Codeception\Specify; use \Codeception\Specify;
protected function tearDown() protected function tearDown()
...@@ -64,5 +63,4 @@ class LoginFormTest extends TestCase ...@@ -64,5 +63,4 @@ class LoginFormTest extends TestCase
$loginForm->expects($this->any())->method('getUser')->will($this->returnValue($user)); $loginForm->expects($this->any())->method('getUser')->will($this->returnValue($user));
return $loginForm; return $loginForm;
} }
} }
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