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 — feature/EventModule ( b76d9a...a8261b )
by Alexander
24:05 queued 15:00
created
application/modules/shop/models/Currency.php 1 patch
Unused Use Statements   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,14 +2,13 @@
 block discarded – undo
2 2
 
3 3
 namespace app\modules\shop\models;
4 4
 
5
+use Yii;
5 6
 use app\modules\shop\models\CurrencyRateProvider;
6
-use app\modules\shop\components\SpecialPriceProductInterface;
7 7
 use devgroup\TagDependencyHelper\ActiveRecordHelper;
8
-use Yii;
9 8
 use yii\base\InvalidConfigException;
10 9
 use yii\caching\TagDependency;
11
-use yii\helpers\ArrayHelper;
12 10
 use yii\data\ActiveDataProvider;
11
+use yii\helpers\ArrayHelper;
13 12
 
14 13
 /**
15 14
  * This is the model class Multi-currency
Please login to merge, or discard this patch.
application/backend/widgets/FloatingPanel.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,12 +2,12 @@
 block discarded – undo
2 2
 
3 3
 namespace app\backend\widgets;
4 4
 
5
-use app\models\Object;
6
-use app\modules\review\models\Review;
7 5
 use Yii;
8
-use yii\base\Widget;
9 6
 use app;
7
+use app\models\Object;
8
+use app\modules\review\models\Review;
10 9
 use kartik\icons\Icon;
10
+use yii\base\Widget;
11 11
 use yii\helpers\Json;
12 12
 
13 13
 class FloatingPanel extends Widget
Please login to merge, or discard this patch.
application/modules/shop/models/Product.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1094,7 +1094,7 @@
 block discarded – undo
1094 1094
     }
1095 1095
 
1096 1096
     /**
1097
-     * @param int|Category|null $category
1097
+     * @param integer $category
1098 1098
      * @param bool $asMainCategory
1099 1099
      * @return bool
1100 1100
      * @throws \yii\db\Exception
Please login to merge, or discard this patch.
Unused Use Statements   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -2,31 +2,31 @@
 block discarded – undo
2 2
 
3 3
 namespace app\modules\shop\models;
4 4
 
5
+use Yii;
5 6
 use app\behaviors\CleanRelations;
6 7
 use app\behaviors\Tree;
7 8
 use app\components\Helper;
8
-use app\modules\image\models\Image;
9 9
 use app\models\Object;
10
-use app\modules\data\components\ImportableInterface;
11 10
 use app\modules\data\components\ExportableInterface;
11
+use app\modules\data\components\ImportableInterface;
12
+use app\modules\image\models\Image;
13
+use app\modules\shop\ShopModule;
12 14
 use app\modules\shop\data\FilterPagination;
13 15
 use app\modules\shop\traits\HasAddonTrait;
14
-use app\modules\shop\ShopModule;
15 16
 use app\properties\HasProperties;
16 17
 use app\properties\PropertiesHelper;
17 18
 use app\traits\GetImages;
18 19
 use devgroup\TagDependencyHelper\ActiveRecordHelper;
19
-use Yii;
20 20
 use yii\base\Exception;
21 21
 use yii\behaviors\TimestampBehavior;
22 22
 use yii\caching\TagDependency;
23 23
 use yii\data\ActiveDataProvider;
24
+use yii\data\Pagination;
24 25
 use yii\db\ActiveQuery;
25 26
 use yii\db\ActiveRecord;
26 27
 use yii\db\Expression;
27 28
 use yii\db\Query;
28 29
 use yii\helpers\ArrayHelper;
29
-use yii\data\Pagination;
30 30
 use yii\web\ServerErrorHttpException;
31 31
 
32 32
 /**
Please login to merge, or discard this patch.
application/widgets/FilteredCategoriesWidget.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/components/yml/Yml.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 namespace app\modules\shop\components\yml;
3 3
 
4
+use Yii;
4 5
 use app\models\ObjectStaticValues;
5 6
 use app\models\Property;
6 7
 use app\models\PropertyStaticValues;
@@ -9,10 +10,9 @@  discard block
 block discarded – undo
9 10
 use app\modules\shop\models\Category;
10 11
 use app\modules\shop\models\Currency;
11 12
 use app\modules\shop\models\Product;
13
+use app\modules\shop\models\Yml as YmlModel;
12 14
 use devgroup\TagDependencyHelper\ActiveRecordHelper;
13
-use Yii;
14 15
 use yii\base\Component;
15
-use app\modules\shop\models\Yml as YmlModel;
16 16
 use yii\caching\TagDependency;
17 17
 use yii\db\Query;
18 18
 use yii\helpers\Json;
Please login to merge, or discard this patch.
application/modules/shop/controllers/BackendCategoryController.php 1 patch
Unused Use Statements   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -2,28 +2,28 @@
 block discarded – undo
2 2
 
3 3
 namespace app\modules\shop\controllers;
4 4
 
5
+use Yii;
5 6
 use app\backend\actions\PropertyHandler;
6 7
 use app\backend\components\BackendController;
7 8
 use app\backend\events\BackendEntityEditEvent;
8
-use app\modules\image\widgets\views\AddImageAction;
9
-use app\modules\shop\models\Category;
10 9
 use app\models\Object;
11 10
 use app\models\ViewObject;
12
-use app\properties\HasProperties;
13 11
 use app\modules\image\widgets\RemoveAction;
14 12
 use app\modules\image\widgets\SaveInfoAction;
15 13
 use app\modules\image\widgets\UploadAction;
14
+use app\modules\image\widgets\views\AddImageAction;
15
+use app\modules\shop\actions\BatchEditPriceAction;
16
+use app\modules\shop\models\Category;
17
+use app\properties\HasProperties;
16 18
 use devgroup\JsTreeWidget\AdjacencyFullTreeDataAction;
17 19
 use devgroup\JsTreeWidget\TreeNodeMoveAction;
18 20
 use devgroup\JsTreeWidget\TreeNodesReorderAction;
19
-use Yii;
20 21
 use yii\db\Query;
21 22
 use yii\filters\AccessControl;
22 23
 use yii\helpers\Json;
23 24
 use yii\helpers\Url;
24 25
 use yii\web\NotFoundHttpException;
25 26
 use yii\web\ServerErrorHttpException;
26
-use app\modules\shop\actions\BatchEditPriceAction;
27 27
 
28 28
 class BackendCategoryController extends BackendController
29 29
 {
Please login to merge, or discard this patch.
application/modules/shop/controllers/BackendProductController.php 1 patch
Unused Use Statements   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -2,26 +2,29 @@  discard block
 block discarded – undo
2 2
 
3 3
 namespace app\modules\shop\controllers;
4 4
 
5
+use Yii;
6
+use app\backend\actions\CategoryMovementsAction;
7
+use app\backend\actions\MassPublishAction;
5 8
 use app\backend\actions\PropertyHandler;
9
+use app\backend\actions\UpdateEditable;
6 10
 use app\backend\components\BackendController;
7 11
 use app\backend\events\BackendEntityEditEvent;
8
-use app\modules\image\widgets\views\AddImageAction;
9
-use app\modules\shop\models\Category;
10
-use app\modules\image\models\Image;
11 12
 use app\models\Object;
12 13
 use app\models\ObjectPropertyGroup;
13
-use app\modules\shop\models\Currency;
14
-use app\modules\shop\models\Product;
15 14
 use app\models\Property;
16 15
 use app\models\PropertyStaticValues;
17 16
 use app\models\ViewObject;
18
-use app\properties\HasProperties;
17
+use app\modules\image\models\Image;
19 18
 use app\modules\image\widgets\RemoveAction;
20 19
 use app\modules\image\widgets\SaveInfoAction;
21 20
 use app\modules\image\widgets\UploadAction;
22
-use app\backend\actions\UpdateEditable;
21
+use app\modules\image\widgets\views\AddImageAction;
22
+use app\modules\shop\actions\BatchEditPriceAction;
23
+use app\modules\shop\models\Category;
24
+use app\modules\shop\models\Currency;
25
+use app\modules\shop\models\Product;
26
+use app\properties\HasProperties;
23 27
 use devgroup\JsTreeWidget\AdjacencyFullTreeDataAction;
24
-use Yii;
25 28
 use yii\data\ActiveDataProvider;
26 29
 use yii\db\Query;
27 30
 use yii\filters\AccessControl;
@@ -30,9 +33,6 @@  discard block
 block discarded – undo
30 33
 use yii\helpers\Url;
31 34
 use yii\web\NotFoundHttpException;
32 35
 use yii\web\ServerErrorHttpException;
33
-use app\backend\actions\MassPublishAction;
34
-use app\backend\actions\CategoryMovementsAction;
35
-use app\modules\shop\actions\BatchEditPriceAction;
36 36
 
37 37
 class BackendProductController extends BackendController
38 38
 {
Please login to merge, or discard this patch.
application/modules/shop/widgets/BatchEditPriceButton.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,12 +2,12 @@
 block discarded – undo
2 2
 namespace app\modules\shop\widgets;
3 3
 
4 4
 use Yii;
5
+use app\modules\shop\assets\BatchEditPriceAsset;
6
+use app\modules\shop\models\Currency;
7
+use kartik\icons\Icon;
5 8
 use yii\base\Widget;
6 9
 use yii\helpers\Html;
7 10
 use yii\helpers\Url;
8
-use kartik\icons\Icon;
9
-use app\modules\shop\assets\BatchEditPriceAsset;
10
-use app\modules\shop\models\Currency;
11 11
 
12 12
 /**
13 13
  * Batch edit prices
Please login to merge, or discard this patch.
application/modules/shop/actions/BatchEditPriceAction.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,11 +2,11 @@
 block discarded – undo
2 2
 namespace app\modules\shop\actions;
3 3
 
4 4
 use Yii;
5
-use yii\base\Action;
6
-use yii\web\Response;
7
-use yii\web\NotFoundHttpException;
8 5
 use app\modules\shop\models\Category;
9 6
 use app\modules\shop\models\Product;
7
+use yii\base\Action;
8
+use yii\web\NotFoundHttpException;
9
+use yii\web\Response;
10 10
 
11 11
 class BatchEditPriceAction extends Action
12 12
 {
Please login to merge, or discard this patch.