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 — Philosoft-patch-1 ( 69c420 )
by Alexander
09:39
created
application/modules/shop/models/OrderItem.php 1 patch
Unused Use Statements   +1 added lines, -4 removed lines patch added patch discarded remove patch
@@ -2,16 +2,13 @@
 block discarded – undo
2 2
 
3 3
 namespace app\modules\shop\models;
4 4
 
5
+use Yii;
5 6
 use app\behaviors\Tree;
6 7
 use app\modules\shop\components\AbstractEntity;
7
-use app\modules\shop\components\AddonOrderItemEntityFactory;
8
-use app\modules\shop\components\CustomOrderItemEntityFactory;
9 8
 use app\modules\shop\components\EntityFactory;
10
-use app\modules\shop\components\ProductOrderItemEntityFactory;
11 9
 use app\modules\shop\helpers\PriceHelper;
12 10
 use app\properties\HasProperties;
13 11
 use devgroup\TagDependencyHelper\ActiveRecordHelper;
14
-use Yii;
15 12
 use yii\db\ActiveRecord;
16 13
 
17 14
 /**
Please login to merge, or discard this patch.
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/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/widgets/AddonsListWidget.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace app\widgets\options;
4 4
 
5 5
 use app\models\Property;
6
-use Yii;
7 6
 use yii\base\Widget;
8 7
 use yii\helpers\ArrayHelper;
9 8
 use yii\helpers\Json;
Please login to merge, or discard this patch.
application/modules/shop/widgets/AddonsWidget.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\modules\shop\widgets;
4 4
 
5
-use Yii;
6
-use yii\base\Widget;
7 5
 use app;
8 6
 use app\modules\shop\models\AddAddonModel;
9 7
 use app\modules\shop\models\AddonCategory;
8
+use yii\base\Widget;
10 9
 
11 10
 class AddonsWidget extends Widget
12 11
 {
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/url/PropertyPart.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\widgets\navigation\models;
4 4
 
5
+use Yii;
5 6
 use app\backgroundtasks\traits\SearchModelTrait;
6 7
 use app\behaviors\Tree;
7 8
 use app\properties\HasProperties;
8 9
 use app\traits\FindById;
9 10
 use app\traits\GetImages;
10
-use Yii;
11 11
 use yii\data\ActiveDataProvider;
12 12
 
13 13
 /**
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
 /*
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/user/controllers/UserController.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\widgets\navigation\models;
4 4
 
5
+use Yii;
5 6
 use app\backgroundtasks\traits\SearchModelTrait;
6 7
 use app\behaviors\Tree;
7 8
 use app\properties\HasProperties;
8 9
 use app\traits\FindById;
9 10
 use app\traits\GetImages;
10
-use Yii;
11 11
 use yii\data\ActiveDataProvider;
12 12
 
13 13
 /**
Please login to merge, or discard this patch.