Passed
Pull Request — master (#191)
by Corey
03:34
created
common/config/main.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
       'common\interfaces\BehaviorInterface' => \common\models\Behavior::class,
12 12
       'common\interfaces\CategoryInterface' => \common\models\Category::class,
13 13
       'common\interfaces\CustomBehaviorInterface' => \common\models\CustomBehavior::class,
14
-      'common\interfaces\TimeInterface' => function () {
14
+      'common\interfaces\TimeInterface' => function() {
15 15
           if (Yii::$app->user->getIsGuest()) {
16 16
               return new \common\components\Time('UTC');
17 17
           } else {
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
   ],
31 31
   'components' => [
32 32
     // by default, sessions are stored in a local file
33
-    'cache' => [ // DummyCache never actually caches anything
33
+    'cache' => [// DummyCache never actually caches anything
34 34
       'class'=> yii\caching\DummyCache::class,
35 35
     ],
36 36
     'mailer' => [
Please login to merge, or discard this patch.
console/tests/_bootstrap.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 require_once(YII_APP_BASE_PATH . '/vendor/autoload.php');
8 8
 require_once(YII_APP_BASE_PATH . '/vendor/yiisoft/yii2/Yii.php');
9 9
 
10
- Yii::setAlias('@web', '/');
10
+  Yii::setAlias('@web', '/');
11 11
 
12 12
 require(YII_APP_BASE_PATH . '/common/config/aliases.php');
13 13
 Yii::setAlias('@tests', dirname(__DIR__));
Please login to merge, or discard this patch.
console/controllers/FsaController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
         ['or',
26 26
           ['not', ['verify_email_token' => null]],
27 27
           // we have to escape the '_' at the start of User::CONFIRMED_STRING
28
-          ['not like', 'verify_email_token', '%\\'.User::CONFIRMED_STRING, false]
28
+          ['not like', 'verify_email_token', '%\\' . User::CONFIRMED_STRING, false]
29 29
         ],
30 30
         ['<', 'created_at', $this->getTimeThreshold()],
31 31
     ]);
Please login to merge, or discard this patch.