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 ( 34fb17...bef128 )
by Ivan
11:12
created
application/modules/shop/models/PaymentType.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,8 +3,8 @@
 block discarded – undo
3 3
 namespace app\modules\shop\models;
4 4
 
5 5
 
6
-use app\components\payment\AbstractPayment;
7 6
 use Yii;
7
+use app\components\payment\AbstractPayment;
8 8
 use yii\base\Exception;
9 9
 use yii\base\UnknownClassException;
10 10
 use yii\db\ActiveRecord;
Please login to merge, or discard this patch.
application/modules/shop/models/UserDiscount.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\models;
4 4
 
5
-use app\modules\user\models\User;
6 5
 use Yii;
6
+use app\modules\user\models\User;
7 7
 
8 8
 /**
9 9
  * This is the model class for table "{{%user_discount}}".
Please login to merge, or discard this patch.
application/modules/shop/models/Warehouse.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\models;
4 4
 
5
-use devgroup\TagDependencyHelper\ActiveRecordHelper;
6 5
 use Yii;
6
+use devgroup\TagDependencyHelper\ActiveRecordHelper;
7 7
 use yii\caching\TagDependency;
8 8
 
9 9
 /**
Please login to merge, or discard this patch.
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-customer/edit.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,8 +5,8 @@
 block discarded – undo
5 5
  */
6 6
 
7 7
 use \app\backend\widgets\BackendWidget;
8
-use yii\helpers\Html;
9 8
 use app\components\Helper;
9
+use yii\helpers\Html;
10 10
 
11 11
     $this->title = Yii::t('app', 'Customer edit');
12 12
     $this->params['breadcrumbs'][] = ['label' => Yii::t('app', 'Customers'), 'url' => ['index']];
Please login to merge, or discard this patch.
application/modules/shop/views/backend-discount/_category_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-stage/leaf-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 leafs');
13 13
     $this->params['breadcrumbs'] = [
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/PriceSliderRangeWidget.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace app\modules\shop\widgets;
3 3
 
4
+use Yii;
4 5
 use yii\db\Query;
5 6
 use yii\helpers\ArrayHelper;
6
-use Yii;
7 7
 
8 8
 
9 9
 class PriceSliderRangeWidget extends SliderRangeWidget
Please login to merge, or discard this patch.