Browse Source

Closing and opening braces in Yii2 coding standards.

maximal 12 years ago
parent
commit
4e188239cf
2 changed files with 0 additions and 4 deletions
  1. 0 2
      tests/unit/models/ContactFormTest.php
  2. 0 2
      tests/unit/models/LoginFormTest.php

+ 0 - 2
tests/unit/models/ContactFormTest.php

@@ -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';
 	}
-
 }

+ 0 - 2
tests/unit/models/LoginFormTest.php

@@ -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;
 	}
-
 }