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.
Passed
Push — master ( 9473d9...a69b27 )
by Alexander
11:37 queued 04:57
created
application/modules/shop/models/UserPreferences.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace app\modules\shop\models;
3 3
 
4
-use app;
5 4
 use Yii;
6
-use yii\base\Model;
5
+use app;
7 6
 use app\modules\shop\helpers\CurrencyHelper;
7
+use yii\base\Model;
8 8
 
9 9
 /**
10 10
  * Class for handling User's preferences ie:
Please login to merge, or discard this patch.
application/modules/shop/views/backend-addons/addons-list.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2
+use app\backend\components\ActionColumn;
2 3
 use kartik\dynagrid\DynaGrid;
3 4
 use yii\helpers\Html;
4
-use app\backend\components\ActionColumn;
5 5
 use \app\modules\shop\models\AddonCategory;
6 6
 /*
7 7
  * @var $dataProvider yii\data\ActiveDataProvider
Please login to merge, or discard this patch.
application/modules/shop/views/backend-addons/index.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2
+use app\backend\components\ActionColumn;
2 3
 use kartik\dynagrid\DynaGrid;
3 4
 use yii\helpers\Html;
4
-use app\backend\components\ActionColumn;
5 5
 /*
6 6
  * @var $dataProvider yii\data\ActiveDataProvider
7 7
  * @var $searchModel app\modules\models\AddonCategory
Please login to merge, or discard this patch.
application/modules/shop/views/backend-order/items.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,10 +5,10 @@
 block discarded – undo
5 5
  * @var \yii\web\View $this
6 6
  */
7 7
 
8
-use kartik\editable\Editable;
9
-use kartik\helpers\Html;
10 8
 use app\modules\shop\components\ProductEntity;
11 9
 use app\modules\shop\models\Product;
10
+use kartik\editable\Editable;
11
+use kartik\helpers\Html;
12 12
 
13 13
 ?>
14 14
 <?php foreach ($items as $item): ?>
Please login to merge, or discard this patch.
application/modules/shop/widgets/charts/SalesChartsWidget.php 1 patch
Unused Use Statements   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,18 +1,18 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace app\modules\shop\widgets\charts;
3 3
 
4
-use app\modules\user\models\User;
5 4
 use Yii;
6
-use yii\db\ActiveQuery;
7
-use yii\db\ActiveRecord;
8
-use yii\db\Connection;
9
-use yii\helpers\Json;
5
+use app\modules\shop\helpers\CurrencyHelper;
10 6
 use app\modules\shop\models\Currency;
11
-use yii\base\Widget;
12 7
 use app\modules\shop\models\Order;
13 8
 use app\modules\shop\models\OrderTransaction;
14
-use app\modules\shop\helpers\CurrencyHelper;
15 9
 use app\modules\shop\widgets\charts\assets\SalesChartsAsset;
10
+use app\modules\user\models\User;
11
+use yii\base\Widget;
12
+use yii\db\ActiveQuery;
13
+use yii\db\ActiveRecord;
14
+use yii\db\Connection;
15
+use yii\helpers\Json;
16 16
 
17 17
 class SalesChartsWidget extends Widget
18 18
 {
Please login to merge, or discard this patch.
application/properties/handlers/fileInput/FileInputProperty.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use Yii;
6 6
 use app\properties\AbstractPropertyEavModel;
7 7
 use yii\helpers\FileHelper;
8
-use yii\helpers\VarDumper;
9 8
 use yii\web\NotFoundHttpException;
10 9
 use yii\web\Response;
11 10
 use yii\web\UploadedFile;
Please login to merge, or discard this patch.
application/backend/components/Helper.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,12 +2,12 @@
 block discarded – undo
2 2
 
3 3
 namespace app\backend\components;
4 4
 
5
+use Yii;
5 6
 use app\backend\BackendModule;
6 7
 use app\components\BaseModule;
7
-use Yii;
8
+use kartik\icons\Icon;
8 9
 use yii\db\ActiveRecord;
9 10
 use yii\helpers\Html;
10
-use kartik\icons\Icon;
11 11
 
12 12
 class Helper
13 13
 {
Please login to merge, or discard this patch.
application/modules/core/controllers/BackendChunkController.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,15 +2,15 @@
 block discarded – undo
2 2
 
3 3
 namespace app\modules\core\controllers;
4 4
 
5
+use Yii;
5 6
 use app\backend\components\BackendController;
6 7
 use app\backend\traits\BackendRedirect;
8
+use app\modules\core\models\ContentBlock;
7 9
 use app\modules\core\models\ContentBlockGroup;
8 10
 use devgroup\JsTreeWidget\AdjacencyFullTreeDataAction;
9 11
 use devgroup\JsTreeWidget\TreeNodeMoveAction;
10 12
 use devgroup\JsTreeWidget\TreeNodesReorderAction;
11 13
 use yii\filters\AccessControl;
12
-use app\modules\core\models\ContentBlock;
13
-use Yii;
14 14
 use yii\helpers\Url;
15 15
 use yii\web\NotFoundHttpException;
16 16
 
Please login to merge, or discard this patch.
application/models/Submission.php 1 patch
Unused Use Statements   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,11 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace app\models;
4 4
 
5
+use Yii;
5 6
 use app\properties\AbstractModel;
6 7
 use app\properties\HasProperties;
7
-use Yii;
8 8
 use yii\data\ActiveDataProvider;
9
-use yii\helpers\ArrayHelper;
10 9
 
11 10
 /**
12 11
  * This is the model class for table "submission".
Please login to merge, or discard this patch.