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/shop/controllers/BackendYmlController.php 1 patch
Unused Use Statements   +3 added lines, -3 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;
7
+use app\backgroundtasks\helpers\BackgroundTasks;
6 8
 use app\components\Helper;
9
+use app\models\Property;
7 10
 use app\modules\shop\models\Yml;
8
-use app\backgroundtasks\helpers\BackgroundTasks;
9
-use Yii;
10 11
 use yii\filters\AccessControl;
11 12
 use yii\helpers\Json;
12
-use app\models\Property;
13 13
 use yii\web\HttpException;
14 14
 use yii\web\Response;
15 15
 
Please login to merge, or discard this patch.
application/modules/shop/controllers/CabinetController.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,8 +3,6 @@
 block discarded – undo
3 3
 namespace app\modules\shop\controllers;
4 4
 
5 5
 use app\modules\core\behaviors\DisableRobotIndexBehavior;
6
-use app\modules\shop\models\Contragent;
7
-use app\modules\shop\models\Customer;
8 6
 use app\modules\shop\models\Order;
9 7
 use yii\filters\AccessControl;
10 8
 use yii\helpers\Url;
Please login to merge, or discard this patch.
application/modules/shop/controllers/PaymentController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,6 @@
 block discarded – undo
8 8
 use yii\base\Action;
9 9
 use yii\web\BadRequestHttpException;
10 10
 use yii\web\Controller;
11
-use Yii;
12 11
 
13 12
 class PaymentController extends Controller
14 13
 {
Please login to merge, or discard this patch.
application/modules/shop/helpers/BaseOrderStageHandlers.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
 use app\modules\shop\models\DeliveryInformation;
10 10
 use app\modules\shop\models\Order;
11 11
 use app\modules\shop\models\OrderDeliveryInformation;
12
-use app\modules\shop\models\OrderStageLeaf;
13 12
 use app\modules\shop\models\OrderTransaction;
14 13
 use app\modules\shop\models\PaymentType;
15 14
 use app\properties\HasProperties;
Please login to merge, or discard this patch.
application/modules/shop/models/ConfigConfigurationModel.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace app\modules\shop\models;
4 4
 
5
+use Yii;
5 6
 use app;
6 7
 use app\modules\config\models\BaseConfigurationModel;
7
-use Yii;
8 8
 
9 9
 /**
10 10
  * Class ConfigConfigurationModel represents configuration model for retrieving user input
Please login to merge, or discard this patch.
application/modules/shop/models/Contragent.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,13 +2,13 @@
 block discarded – undo
2 2
 
3 3
 namespace app\modules\shop\models;
4 4
 
5
+use Yii;
5 6
 use app\models\Property;
6 7
 use app\models\PropertyGroup;
7 8
 use app\properties\AbstractModel;
8 9
 use app\properties\HasProperties;
9 10
 use app\properties\PropertyValue;
10 11
 use app\properties\traits\PropertyTrait;
11
-use Yii;
12 12
 
13 13
 /**
14 14
  * This is the model class for table "{{%contragent}}".
Please login to merge, or discard this patch.
application/modules/shop/models/Customer.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\shop\models;
4 4
 
5
+use Yii;
5 6
 use app\models\Property;
6 7
 use app\models\PropertyGroup;
7 8
 use app\modules\user\models\User;
@@ -9,7 +10,6 @@  discard block
 block discarded – undo
9 10
 use app\properties\HasProperties;
10 11
 use app\properties\PropertyValue;
11 12
 use app\properties\traits\PropertyTrait;
12
-use Yii;
13 13
 
14 14
 /**
15 15
  * This is the model class for table "{{%customer}}".
Please login to merge, or discard this patch.
application/modules/shop/models/DeliveryInformation.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace app\modules\shop\models;
4 4
 
5
+use Yii;
5 6
 use app\models\City;
6 7
 use app\models\Country;
7
-use Yii;
8 8
 
9 9
 /**
10 10
  * This is the model class for table "{{%delivery_information}}".
Please login to merge, or discard this patch.
application/modules/shop/models/Order.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\models;
4 4
 
5
+use Yii;
5 6
 use app\modules\core\helpers\EventTriggeringHelper;
6 7
 use app\modules\shop\events\OrderCalculateEvent;
7 8
 use app\modules\shop\helpers\PriceHelper;
8 9
 use app\modules\user\models\User;
9 10
 use app\properties\HasProperties;
10
-use Yii;
11 11
 use yii\base\Exception;
12 12
 use yii\behaviors\TimestampBehavior;
13 13
 use yii\caching\TagDependency;
Please login to merge, or discard this patch.