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 — action_getCatTree_order ( 77944b )
by
unknown
23:56
created
application/modules/shop/views/payment/transaction.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -4,8 +4,6 @@
 block discarded – undo
4 4
  */
5 5
 use \app\modules\shop\models\OrderTransaction;
6 6
 use \yii\helpers\Html;
7
-use kartik\icons\Icon;
8
-use yii\helpers\Url;
9 7
 
10 8
     $paymentType = $transaction->paymentType;
11 9
 ?>
Please login to merge, or discard this patch.
application/modules/shop/views/product/show.php 1 patch
Unused Use Statements   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,9 +12,8 @@
 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;
16
+use app\modules\shop\models\Product;
18 17
 use kartik\helpers\Html;
19 18
 use yii\helpers\Url;
20 19
 
Please login to merge, or discard this patch.
application/modules/user/controllers/RbacController.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -277,7 +277,7 @@
 block discarded – undo
277 277
      * Deletes an existing User model.
278 278
      * If deletion is successful, the browser will be redirected to the 'index' page.
279 279
      * @param integer $id
280
-     * @return mixed
280
+     * @return \yii\web\Response
281 281
      */
282 282
     public function actionDelete($id)
283 283
     {
Please login to merge, or discard this 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\user\controllers;
4 4
 
5
+use Yii;
5 6
 use app\backend\components\BackendController;
6 7
 use app\backend\models\AuthItemForm;
7 8
 use yii\data\ArrayDataProvider;
8 9
 use yii\filters\AccessControl;
9 10
 use yii\filters\VerbFilter;
10 11
 use yii\helpers\ArrayHelper;
11
-use yii\rbac\Item;
12 12
 use yii\helpers\Url;
13
-use Yii;
13
+use yii\rbac\Item;
14 14
 
15 15
 /**
16 16
  * BackendUserController implements the CRUD actions for User model.
Please login to merge, or discard this patch.
application/modules/user/views/user/post-registration.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2
-use yii\helpers\Html;
3 2
 use app\properties\HasProperties;
3
+use yii\helpers\Html;
4 4
 ?>
5 5
     <div id="properties-widget-<?=$widget_id?>">
6 6
         <?php
Please login to merge, or discard this patch.
application/widgets/filter/views/filterWidget.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
+use app\models\Property;
3 4
 use kartik\helpers\Html;
4 5
 use yii\helpers\Url;
5
-use app\models\Property;
6 6
 /**
7 7
  * @var int $category_group_id
8 8
  * @var array $possible_selections
Please login to merge, or discard this patch.
application/widgets/filter/views/filter-form.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
+use app\models\Property;
3 4
 use kartik\helpers\Html;
4 5
 use yii\helpers\Url;
5
-use app\models\Property;
6 6
 /**
7 7
  * @var int $category_group_id
8 8
  * @var array $possible_selections
Please login to merge, or discard this patch.
application/modules/shop/models/CurrencyRateProvider.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,9 +4,9 @@
 block discarded – undo
4 4
 
5 5
 use Ivory\HttpAdapter\HttpAdapterInterface;
6 6
 use Yii;
7
+use yii\data\ActiveDataProvider;
7 8
 use yii\helpers\ArrayHelper;
8 9
 use yii\helpers\Json;
9
-use yii\data\ActiveDataProvider;
10 10
 
11 11
 /**
12 12
  * Model for storing name and params of Currency Rate Providers
Please login to merge, or discard this patch.