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
Pull Request — master (#392)
by
unknown
12:47
created
application/modules/review/controllers/ProcessController.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,6 +2,7 @@  discard block
 block discarded – undo
2 2
 
3 3
 namespace app\modules\review\controllers;
4 4
 
5
+use Yii;
5 6
 use app\actions\SubmitFormAction;
6 7
 use app\behaviors\spamchecker\SpamCheckerBehavior;
7 8
 use app\components\Controller;
@@ -10,7 +11,6 @@  discard block
 block discarded – undo
10 11
 use app\modules\review\models\RatingItem;
11 12
 use app\modules\review\models\RatingValues;
12 13
 use app\modules\review\models\Review;
13
-use Yii;
14 14
 use yii\helpers\Json;
15 15
 use yii\web\HttpException;
16 16
 
Please login to merge, or discard this patch.
application/modules/seo/models/Redirect.php 1 patch
Unused Use Statements   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,10 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace app\modules\seo\models;
4 4
 
5
+use Yii;
5 6
 use yii\data\ActiveDataProvider;
6 7
 use yii\db\ActiveRecord;
7
-use yii\helpers\ArrayHelper;
8
-use Yii;
9 8
 
10 9
 /**
11 10
  * This is the model class for table "seo_redirect".
Please login to merge, or discard this patch.
application/modules/shop/controllers/BackendWarehouseController.php 1 patch
Unused Use Statements   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -2,25 +2,25 @@
 block discarded – undo
2 2
 
3 3
 namespace app\modules\shop\controllers;
4 4
 
5
+use Yii;
6
+use app\backend\actions\DeleteOne;
7
+use app\backend\actions\MultipleDelete;
8
+use app\backend\actions\UpdateEditable;
5 9
 use app\backend\components\BackendController;
6 10
 use app\components\SearchModel;
7 11
 use app\modules\shop\models\Product;
12
+use app\modules\shop\models\Warehouse;
8 13
 use app\modules\shop\models\WarehouseEmail;
9 14
 use app\modules\shop\models\WarehouseOpeninghours;
10 15
 use app\modules\shop\models\WarehousePhone;
11
-use devgroup\TagDependencyHelper\ActiveRecordHelper;
12
-use app\backend\actions\DeleteOne;
13
-use app\backend\actions\MultipleDelete;
14
-use app\backend\actions\UpdateEditable;
15
-use app\modules\shop\models\Warehouse;
16 16
 use app\modules\shop\models\WarehouseProduct;
17
-use yii\helpers\Url;
18
-use Yii;
17
+use devgroup\TagDependencyHelper\ActiveRecordHelper;
18
+use yii\caching\TagDependency;
19 19
 use yii\data\ActiveDataProvider;
20 20
 use yii\filters\AccessControl;
21
+use yii\helpers\Url;
21 22
 use yii\web\HttpException;
22 23
 use yii\web\NotFoundHttpException;
23
-use yii\caching\TagDependency;
24 24
 
25 25
 class BackendWarehouseController extends BackendController
26 26
 {
Please login to merge, or discard this patch.
application/modules/shop/views/backend-category/index.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
+use app\backend\components\Helper;
4
+use devgroup\JsTreeWidget\ContextMenuHelper;
5
+use devgroup\JsTreeWidget\TreeWidget;
3 6
 use kartik\dynagrid\DynaGrid;
4 7
 use kartik\icons\Icon;
5 8
 use yii\helpers\Url;
6
-use devgroup\JsTreeWidget\TreeWidget;
7
-use devgroup\JsTreeWidget\ContextMenuHelper;
8
-use app\backend\components\Helper;
9 9
 
10 10
 $this->title = Yii::t('app', 'Categories');
11 11
 if (is_object($model)) {
Please login to merge, or discard this patch.
application/modules/shop/views/backend-product/index.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,12 +1,12 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
+use app\backend\components\Helper;
3 4
 use app\modules\shop\models\Product;
5
+use devgroup\JsTreeWidget\ContextMenuHelper;
6
+use devgroup\JsTreeWidget\TreeWidget;
4 7
 use kartik\dynagrid\DynaGrid;
5 8
 use kartik\icons\Icon;
6 9
 use yii\helpers\Url;
7
-use devgroup\JsTreeWidget\TreeWidget;
8
-use devgroup\JsTreeWidget\ContextMenuHelper;
9
-use app\backend\components\Helper;
10 10
 
11 11
 $this->title = Yii::t('app', 'Products');
12 12
 $this->params['breadcrumbs'][] = $this->title;
Please login to merge, or discard this patch.
application/modules/shop/views/cart/items.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
  * @var \yii\web\View $this
6 6
  */
7 7
 
8
-use app\modules\shop\models\Product;
9 8
 use kartik\helpers\Html;
10 9
 
11 10
 $immutable = isset($immutable) && $immutable;
Please login to merge, or discard this patch.
application/modules/shop/views/product/show.php 1 patch
Unused Use Statements   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -12,12 +12,10 @@
 block discarded – undo
12 12
  * @var $values_by_property_id integer
13 13
  */
14 14
 
15
-use app\modules\image\models\Image;
16
-use app\modules\shop\models\Product;
17 15
 use app\modules\image\widgets\ObjectImageWidget;
18
-use kartik\helpers\Html;
19
-use yii\helpers\Url;
16
+use app\modules\shop\models\Product;
20 17
 use app\modules\shop\widgets\AddToWishlistWidget;
18
+use kartik\helpers\Html;
21 19
 
22 20
 $this->title = $this->blocks['title'];
23 21
 $this->params['breadcrumbs'] = $breadcrumbs;
Please login to merge, or discard this patch.
application/modules/shop/views/wishlist/toolbar.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 2
 use app\modules\shop\models\Wishlist;
3
-use yii\helpers\Url;
4 3
 use yii\helpers\Html;
4
+use yii\helpers\Url;
5 5
 
6 6
 /**
7 7
  * @var $this yii\web\View
Please login to merge, or discard this patch.
application/modules/shop/widgets/views/order-chat/backend.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
  * @var \app\backend\models\OrderChat[] $list
5 5
  * @var \app\modules\shop\models\Order $order
6 6
  */
7
-use yii\helpers\Html;
8 7
 
9 8
 $this->registerAssetBundle(\app\backend\assets\KoAsset::className());
10 9
 
Please login to merge, or discard this patch.