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 — small_fix_filter ( 71c4d5...e9de62 )
by
unknown
09:28
created
application/backend/widgets/JSSelectableTree.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace app\backend\widgets;
4 4
 
5
-use app\modules\shop\models\Category;
6 5
 use Yii;
6
+use app\modules\shop\models\Category;
7 7
 use yii\helpers\ArrayHelper;
8 8
 use yii\helpers\Json;
9 9
 use yii\helpers\Url;
Please login to merge, or discard this patch.
application/backend/widgets/Notification.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace app\backend\widgets;
4 4
 
5
-use yii\base\Widget;
6 5
 use app\backend\models\Notification as NotificationModel;
6
+use yii\base\Widget;
7 7
 
8 8
 class Notification extends Widget
9 9
 {
Please login to merge, or discard this patch.
application/backend/widgets/WarehousesRemains.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\backend\widgets;
4 4
 
5
-use devgroup\TagDependencyHelper\ActiveRecordHelper;
6 5
 use Yii;
7 6
 use app;
7
+use app\modules\shop\models\Warehouse;
8
+use app\modules\shop\models\WarehouseProduct;
9
+use devgroup\TagDependencyHelper\ActiveRecordHelper;
8 10
 use yii\base\InvalidConfigException;
9 11
 use yii\base\Widget;
10 12
 use yii\caching\TagDependency;
11
-use app\modules\shop\models\WarehouseProduct;
12
-use app\modules\shop\models\Warehouse;
13 13
 
14 14
 
15 15
 /**
Please login to merge, or discard this patch.
application/backgroundtasks/models/Task.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -231,7 +231,7 @@
 block discarded – undo
231 231
 
232 232
     /**
233 233
      * Set status
234
-     * @param $status
234
+     * @param string $status
235 235
      * @return bool
236 236
      */
237 237
     public function setStatus($status)
Please login to merge, or discard this patch.
application/behaviors/CleanRelations.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,12 +2,12 @@
 block discarded – undo
2 2
 
3 3
 namespace app\behaviors;
4 4
 
5
-use app\modules\image\models\Image;
5
+use Yii;
6 6
 use app\models\Object;
7 7
 use app\models\ObjectPropertyGroup;
8 8
 use app\models\ObjectStaticValues;
9 9
 use app\models\ViewObject;
10
-use Yii;
10
+use app\modules\image\models\Image;
11 11
 use yii\base\Behavior;
12 12
 use yii\db\ActiveRecord;
13 13
 use yii\db\Exception;
Please login to merge, or discard this patch.
application/behaviors/spamchecker/SpamCheckable.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -7,5 +7,9 @@
 block discarded – undo
7 7
 interface SpamCheckable
8 8
 {
9 9
     public function check();
10
+
11
+    /**
12
+     * @return string
13
+     */
10 14
     public function getType();
11 15
 }
12 16
\ No newline at end of file
Please login to merge, or discard this patch.
application/commands/ExtensionController.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,12 +2,12 @@
 block discarded – undo
2 2
 
3 3
 namespace app\commands;
4 4
 
5
-use app\modules\core\models\Extensions;
6 5
 use Yii;
6
+use app\modules\core\models\Extensions;
7 7
 use yii\console\Controller;
8 8
 use yii\helpers\ArrayHelper;
9
-use yii\helpers\Json;
10 9
 use yii\helpers\Console;
10
+use yii\helpers\Json;
11 11
 
12 12
 class ExtensionController extends Controller
13 13
 {
Please login to merge, or discard this patch.
application/components/ActionColumn.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace app\components;
4 4
 
5
-use kartik\icons\Icon;
6 5
 use Yii;
6
+use kartik\icons\Icon;
7 7
 use yii\helpers\Html;
8 8
 
9 9
 class ActionColumn extends \yii\grid\ActionColumn
Please login to merge, or discard this patch.
application/components/Controller.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -16,6 +16,9 @@  discard block
 block discarded – undo
16 16
     const EVENT_PRE_DECORATOR = 'pre-decorator';
17 17
     const EVENT_POST_DECORATOR = 'post-decorator';
18 18
 
19
+    /**
20
+     * @param string $methodName
21
+     */
19 22
     protected function renderDecorator($methodName, $view, $params = [])
20 23
     {
21 24
         if (!empty(Yii::$app->response->title)) {
@@ -91,6 +94,7 @@  discard block
 block discarded – undo
91 94
 
92 95
     /**
93 96
      * @inheritdoc
97
+     * @param string $view
94 98
      */
95 99
     public function render($view, $params = [])
96 100
     {
@@ -99,6 +103,7 @@  discard block
 block discarded – undo
99 103
 
100 104
     /**
101 105
      * @inheritdoc
106
+     * @param string $view
102 107
      */
103 108
     public function renderAjax($view, $params = [])
104 109
     {
Please login to merge, or discard this patch.