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 — filters-dev ( b8c330...c59b06 )
by Ivan
11:21
created
application/backend/widgets/RemoveAllButton.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace app\backend\widgets;
4 4
 
5
+use kartik\icons\Icon;
5 6
 use yii\base\InvalidParamException;
6 7
 use yii\base\Widget;
7 8
 use yii\helpers\Html;
8
-use kartik\icons\Icon;
9 9
 
10 10
 class RemoveAllButton extends Widget
11 11
 {
Please login to merge, or discard this patch.
application/components/BaseModule.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\components;
3 3
 
4
-use yii\base\Application;
5
-use yii\base\Module;
6 4
 use app\backend\BackendModule;
7 5
 use app\backend\components\BackendController;
6
+use yii\base\Application;
7
+use yii\base\Module;
8 8
 
9 9
 /**
10 10
  * BaseModule is the base module for core DotPlant2 modules.
Please login to merge, or discard this patch.
application/components/payment/PayPalPayment.php 1 patch
Unused Use Statements   +6 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,13 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 namespace app\components\payment;
3 3
 
4
-use app\modules\shop\helpers\CurrencyHelper;
5
-use app\modules\shop\helpers\PriceHelper;
6
-use app\modules\shop\models\Currency;
7
-use app\modules\shop\models\Order;
8
-use app\modules\shop\models\OrderItem;
9
-use app\modules\shop\models\OrderTransaction;
10
-use app\modules\shop\models\Product;
11 4
 use PayPal\Api\Amount;
12 5
 use PayPal\Api\Details;
13 6
 use PayPal\Api\Item;
@@ -19,6 +12,12 @@  discard block
 block discarded – undo
19 12
 use PayPal\Api\Transaction;
20 13
 use PayPal\Auth\OAuthTokenCredential;
21 14
 use PayPal\Rest\ApiContext;
15
+use app\modules\shop\helpers\CurrencyHelper;
16
+use app\modules\shop\models\Currency;
17
+use app\modules\shop\models\Order;
18
+use app\modules\shop\models\OrderItem;
19
+use app\modules\shop\models\OrderTransaction;
20
+use app\modules\shop\models\Product;
22 21
 use yii\helpers\Url;
23 22
 use yii\web\BadRequestHttpException;
24 23
 
Please login to merge, or discard this patch.
application/extensions/DefaultTheme/widgets/FilterSets/Widget.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/models/PropertyStaticValues.php 2 patches
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
     }
188 188
 
189 189
     /**
190
-     * @param $property_id
190
+     * @param integer $property_id
191 191
      * @param $category_id
192 192
      * @param $properties
193 193
      * @return PropertyStaticValues[]
@@ -313,6 +313,9 @@  discard block
 block discarded – undo
313 313
         return $allSelections;
314 314
     }
315 315
 
316
+    /**
317
+     * @param string $joinCondition
318
+     */
316 319
     private static function initSubQuery($category_id, $joinCondition)
317 320
     {
318 321
         $subQuery = ObjectStaticValues::find();
Please login to merge, or discard this 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/backend/AddonsController.php 1 patch
Unused Use Statements   +5 added lines, -7 removed lines patch added patch discarded remove patch
@@ -2,22 +2,20 @@
 block discarded – undo
2 2
 
3 3
 namespace app\modules\shop\backend;
4 4
 
5
+use Yii;
6
+use app\backend\actions\DeleteOne;
7
+use app\backend\actions\MultipleDelete;
5 8
 use app\backend\components\BackendController;
9
+use app\backend\traits\BackendRedirect;
6 10
 use app\models\Object;
7 11
 use app\modules\shop\models\Addon;
8
-use app\modules\shop\models\AddonBindings;
12
+use app\modules\shop\models\AddonCategory;
9 13
 use app\modules\shop\models\Currency;
10 14
 use app\modules\shop\widgets\AddonsListWidget;
11 15
 use app\traits\LoadModel;
12
-use app\backend\traits\BackendRedirect;
13
-use app\backend\actions\MultipleDelete;
14
-use app\backend\actions\DeleteOne;
15
-use app\modules\shop\models\AddonCategory;
16
-use Yii;
17 16
 use yii\caching\TagDependency;
18 17
 use yii\filters\AccessControl;
19 18
 use yii\helpers\Html;
20
-use yii\helpers\Url;
21 19
 use yii\web\BadRequestHttpException;
22 20
 use yii\web\NotFoundHttpException;
23 21
 use yii\web\Response;
Please login to merge, or discard this patch.
application/modules/shop/commands/YmlController.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/components/AbstractEntity.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
     }
35 35
 
36 36
     /**
37
-     * @return mixed
37
+     * @return \app\modules\shop\models\Addon
38 38
      */
39 39
     public function getModel()
40 40
     {
Please login to merge, or discard this patch.
application/modules/shop/components/yml/OfferTag.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
     }
42 42
 
43 43
     /**
44
-     * @return mixed
44
+     * @return string
45 45
      */
46 46
     public function getValue()
47 47
     {
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
     }
50 50
 
51 51
     /**
52
-     * @param mixed $value
52
+     * @param OfferTag[] $value
53 53
      * @return $this
54 54
      */
55 55
     public function setValue($value)
Please login to merge, or discard this patch.