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 ( 8d42ac...c3ef8e )
by Alexander
69:25 queued 62:45
created
application/modules/seo/views/open-graph/index.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -1,9 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 use app\backend\components\ActionColumn;
4
-use kartik\dynagrid\DynaGrid;
5
-use kartik\helpers\Html;
6
-use kartik\icons\Icon;
7 4
 
8 5
 /**
9 6
  * @var $this yii\web\View
Please login to merge, or discard this patch.
application/modules/shop/controllers/BackendCategoryGroupController.php 2 patches
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,13 +2,13 @@
 block discarded – undo
2 2
 
3 3
 namespace app\modules\shop\controllers;
4 4
 
5
-use app\backend\components\BackendController;
6 5
 use Yii;
7
-use app\modules\shop\models\CategoryGroup;
6
+use app\backend\components\BackendController;
8 7
 use app\components\SearchModel;
8
+use app\modules\shop\models\CategoryGroup;
9 9
 use yii\filters\AccessControl;
10
-use yii\web\NotFoundHttpException;
11 10
 use yii\helpers\Url;
11
+use yii\web\NotFoundHttpException;
12 12
 
13 13
 /**
14 14
  * CategoryGroupController implements the CRUD actions for CategoryGroup model.
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@
 block discarded – undo
107 107
      * Deletes an existing CategoryGroup model.
108 108
      * If deletion is successful, the browser will be redirected to the 'index' page.
109 109
      * @param string $id
110
-     * @return mixed
110
+     * @return \yii\web\Response
111 111
      */
112 112
     public function actionDelete($id)
113 113
     {
Please login to merge, or discard this patch.
application/modules/shop/controllers/BackendCurrenciesController.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,12 +2,12 @@
 block discarded – undo
2 2
 
3 3
 namespace app\modules\shop\controllers;
4 4
 
5
+use Yii;
5 6
 use app\backend\actions\DeleteOne;
6 7
 use app\backend\actions\MultipleDelete;
7 8
 use app\backend\actions\UpdateEditable;
8 9
 use app\backend\components\BackendController;
9 10
 use app\modules\shop\models\Currency;
10
-use Yii;
11 11
 use yii\filters\AccessControl;
12 12
 use yii\helpers\Url;
13 13
 
Please login to merge, or discard this patch.
modules/shop/controllers/BackendCurrencyRateProviderController.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,11 +2,11 @@
 block discarded – undo
2 2
 
3 3
 namespace app\modules\shop\controllers;
4 4
 
5
+use Yii;
5 6
 use app\backend\actions\DeleteOne;
6 7
 use app\backend\actions\MultipleDelete;
7 8
 use app\backend\components\BackendController;
8 9
 use app\modules\shop\models\CurrencyRateProvider;
9
-use Yii;
10 10
 use yii\filters\AccessControl;
11 11
 
12 12
 class BackendCurrencyRateProviderController extends BackendController
Please login to merge, or discard this patch.
application/modules/shop/controllers/BackendDiscountController.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,12 +3,12 @@
 block discarded – undo
3 3
 namespace app\modules\shop\controllers;
4 4
 
5 5
 
6
+use Yii;
7
+use app\backend\components\BackendController;
6 8
 use app\modules\shop\models\AbstractDiscountType;
7 9
 use app\modules\shop\models\Discount;
8 10
 use app\modules\shop\models\DiscountType;
9 11
 use yii\filters\AccessControl;
10
-use app\backend\components\BackendController;
11
-use Yii;
12 12
 use yii\helpers\Url;
13 13
 use yii\web\NotFoundHttpException;
14 14
 
Please login to merge, or discard this patch.
application/modules/shop/controllers/BackendMeasureController.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace app\modules\shop\controllers;
4 4
 
5
+use Yii;
5 6
 use app\backend\components\BackendController;
6 7
 use app\components\SearchModel;
7 8
 use app\modules\shop\models\Measure;
8
-use Yii;
9 9
 use yii\filters\AccessControl;
10 10
 use yii\filters\VerbFilter;
11 11
 use yii\web\NotFoundHttpException;
Please login to merge, or discard this patch.
application/modules/shop/controllers/BackendOrderController.php 1 patch
Unused Use Statements   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,12 +2,14 @@  discard block
 block discarded – undo
2 2
 
3 3
 namespace app\modules\shop\controllers;
4 4
 
5
+use Yii;
5 6
 use app\backend\components\BackendController;
6 7
 use app\backend\models\Notification;
7 8
 use app\backend\models\OrderChat;
8 9
 use app\components\Helper;
9 10
 use app\components\SearchModel;
10 11
 use app\modules\core\helpers\EventSubscribingHelper;
12
+use app\modules\shop\ShopModule;
11 13
 use app\modules\shop\events\OrderCalculateEvent;
12 14
 use app\modules\shop\helpers\PriceHelper;
13 15
 use app\modules\shop\models\Contragent;
@@ -22,14 +24,11 @@  discard block
 block discarded – undo
22 24
 use app\modules\shop\models\Product;
23 25
 use app\modules\shop\models\ShippingOption;
24 26
 use app\modules\shop\models\SpecialPriceList;
25
-use app\modules\shop\ShopModule;
26 27
 use app\modules\user\models\User;
27 28
 use app\properties\HasProperties;
28 29
 use kartik\helpers\Html;
29
-use Yii;
30 30
 use yii\caching\TagDependency;
31 31
 use yii\data\ArrayDataProvider;
32
-use yii\db\Query;
33 32
 use yii\filters\AccessControl;
34 33
 use yii\helpers\ArrayHelper;
35 34
 use yii\helpers\Url;
Please login to merge, or discard this patch.
application/modules/shop/controllers/BackendPaymentTypeController.php 2 patches
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace app\modules\shop\controllers;
4 4
 
5
-use app\components\SearchModel;
5
+use Yii;
6 6
 use app\backend\components\BackendController;
7
+use app\components\SearchModel;
7 8
 use app\modules\shop\models\PaymentType;
8
-use Yii;
9 9
 use yii\filters\AccessControl;
10 10
 use yii\filters\VerbFilter;
11 11
 use yii\web\NotFoundHttpException;
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@
 block discarded – undo
111 111
      * Deletes an existing PaymentType model.
112 112
      * If deletion is successful, the browser will be redirected to the 'index' page.
113 113
      * @param string $id
114
-     * @return mixed
114
+     * @return \yii\web\Response
115 115
      */
116 116
     public function actionDelete($id)
117 117
     {
Please login to merge, or discard this patch.
application/modules/shop/controllers/BackendShippingOptionController.php 2 patches
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,14 +2,14 @@
 block discarded – undo
2 2
 
3 3
 namespace app\modules\shop\controllers;
4 4
 
5
+use Yii;
5 6
 use app\backend\components\BackendController;
6 7
 use app\components\SearchModel;
7 8
 use app\modules\shop\models\ShippingOption;
8
-use Yii;
9 9
 use yii\filters\AccessControl;
10 10
 use yii\filters\VerbFilter;
11
-use yii\web\NotFoundHttpException;
12 11
 use yii\helpers\Url;
12
+use yii\web\NotFoundHttpException;
13 13
 
14 14
 /**
15 15
  * ShippingOptionController implements the CRUD actions for ShippingOption model.
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@
 block discarded – undo
113 113
      * Deletes an existing ShippingOption model.
114 114
      * If deletion is successful, the browser will be redirected to the 'index' page.
115 115
      * @param string $id
116
-     * @return mixed
116
+     * @return \yii\web\Response
117 117
      */
118 118
     public function actionDelete($id)
119 119
     {
Please login to merge, or discard this patch.