GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Test Setup Failed
Push — master ( dd527b...8fc7ab )
by Alexander
09:28
created
application/modules/shop/models/Yml.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -168,7 +168,7 @@
 block discarded – undo
168 168
     }
169 169
 
170 170
     /**
171
-     * @return array
171
+     * @return string[]
172 172
      */
173 173
     public function getOfferElements()
174 174
     {
Please login to merge, or discard this patch.
application/modules/shop/views/backend-discount/_user_discount.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,4 @@
 block discarded – undo
1 1
 <?php
2
-use kartik\select2\Select2;
3 2
 
4 3
 /**
5 4
  * @var $this yii\web\View
Please login to merge, or discard this patch.
application/modules/shop/views/backend-product/product-form.php 1 patch
Unused Use Statements   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,16 +1,16 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
+use app\backend\components\ActiveForm;
4
+use app\backend\components\Helper;
3 5
 use app\backend\widgets\BackendWidget;
6
+use app\backend\widgets\GridView;
7
+use app\modules\shop\ShopModule;
4 8
 use app\modules\shop\controllers\BackendProductController;
5 9
 use app\modules\shop\models\Product;
6
-use app\backend\widgets\GridView;
7 10
 use kartik\helpers\Html;
8 11
 use kartik\icons\Icon;
9
-use app\backend\components\ActiveForm;
10 12
 use kartik\widgets\DateTimePicker;
11 13
 use yii\data\ActiveDataProvider;
12
-use app\backend\components\Helper;
13
-use app\modules\shop\ShopModule;
14 14
 use yii\helpers\Url;
15 15
 
16 16
 /**
Please login to merge, or discard this patch.
application/modules/shop/views/backend-stage/stage-index.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,9 +5,9 @@
 block discarded – undo
5 5
  * @var \yii\data\ActiveDataProvider $dataProvider
6 6
  */
7 7
 
8
+use kartik\icons\Icon;
8 9
 use yii\helpers\Html;
9
-    use yii\helpers\Url;
10
-    use kartik\icons\Icon;
10
+use yii\helpers\Url;
11 11
 
12 12
     $this->title = Yii::t('app', 'Order stages');
13 13
     $this->params['breadcrumbs'] = [
Please login to merge, or discard this patch.
application/modules/shop/widgets/ProductCompare.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace app\modules\shop\widgets;
4 4
 
5 5
 use app\modules\shop\helpers\ProductCompareHelper;
6
-use yii;
7 6
 use yii\base\Widget;
8 7
 
9 8
 class ProductCompare extends Widget
Please login to merge, or discard this patch.
application/modules/shop/widgets/PropertiesSliderRangeWidget.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace app\modules\shop\widgets;
4 4
 
5
-use yii\helpers\ArrayHelper;
6 5
 use Yii;
6
+use yii\helpers\ArrayHelper;
7 7
 
8 8
 /**
9 9
  * @property \app\models\Property $property
Please login to merge, or discard this patch.
application/modules/user/actions/AuthAction.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace app\modules\user\actions;
4 4
 
5
-use app;
6 5
 use Yii;
6
+use app;
7 7
 
8 8
 /**
9 9
  * AuthAction extends base yii2 auth action adding error view
Please login to merge, or discard this patch.
application/modules/user/controllers/BackendUserController.php 1 patch
Unused Use Statements   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,17 +2,16 @@
 block discarded – undo
2 2
 
3 3
 namespace app\modules\user\controllers;
4 4
 
5
+use Yii;
5 6
 use app\backend\components\BackendController;
6 7
 use app\components\SearchModel;
7 8
 use app\modules\user\models\User;
8
-use Yii;
9 9
 use yii\filters\AccessControl;
10 10
 use yii\filters\VerbFilter;
11 11
 use yii\helpers\ArrayHelper;
12 12
 use yii\helpers\Json;
13
-use yii\rbac\Item;
14 13
 use yii\helpers\Url;
15
-
14
+use yii\rbac\Item;
16 15
 use yii\web\NotFoundHttpException;
17 16
 
18 17
 /**
Please login to merge, or discard this patch.
application/modules/user/controllers/UserController.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,7 +2,10 @@  discard block
 block discarded – undo
2 2
 
3 3
 namespace app\modules\user\controllers;
4 4
 
5
+use Yii;
5 6
 use app;
7
+use app\components\AuthClientHelper;
8
+use app\modules\seo\behaviors\MetaBehavior;
6 9
 use app\modules\user\actions\AuthAction;
7 10
 use app\modules\user\models\LoginForm;
8 11
 use app\modules\user\models\PasswordResetRequestForm;
@@ -10,8 +13,6 @@  discard block
 block discarded – undo
10 13
 use app\modules\user\models\ResetPasswordForm;
11 14
 use app\modules\user\models\User;
12 15
 use app\modules\user\models\UserService;
13
-use app\modules\seo\behaviors\MetaBehavior;
14
-use Yii;
15 16
 use yii\base\ErrorException;
16 17
 use yii\base\InvalidParamException;
17 18
 use yii\caching\TagDependency;
@@ -21,7 +22,6 @@  discard block
 block discarded – undo
21 22
 use yii\web\Controller;
22 23
 use yii\web\NotFoundHttpException;
23 24
 use yii\web\Response;
24
-use app\components\AuthClientHelper;
25 25
 
26 26
 /**
27 27
  * Base DotPlant2 controller for handling user's login/signup/logout and etc. functions
Please login to merge, or discard this patch.