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 — master ( 8d42ac...c3ef8e )
by Alexander
69:25 queued 62:45
created
modules/shop/components/GoogleMerchants/ModificationDataInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -5,5 +5,8 @@
 block discarded – undo
5 5
 
6 6
 interface ModificationDataInterface
7 7
 {
8
+    /**
9
+     * @return void
10
+     */
8 11
     public static function processData(ModificationDataEvent $event);
9 12
 }
10 13
\ No newline at end of file
Please login to merge, or discard this patch.
application/modules/shop/models/GoogleFeed.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -168,7 +168,7 @@
 block discarded – undo
168 168
     }
169 169
 
170 170
     /**
171
-     * @return array
171
+     * @return string[]
172 172
      */
173 173
     public function getOfferElements()
174 174
     {
Please login to merge, or discard this patch.
application/properties/handlers/fileInput/FileInputProperty.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use Yii;
6 6
 use app\properties\AbstractPropertyEavModel;
7 7
 use yii\helpers\FileHelper;
8
-use yii\helpers\VarDumper;
9 8
 use yii\web\NotFoundHttpException;
10 9
 use yii\web\Response;
11 10
 use yii\web\UploadedFile;
Please login to merge, or discard this patch.
application/backend/components/Helper.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,6 @@
 block discarded – undo
16 16
     public static $returnUrlWithoutHistory = false;
17 17
 
18 18
     /**
19
-     * @param int $depth
20 19
      * @return string
21 20
      */
22 21
     public static function getReturnUrl()
Please login to merge, or discard this 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\backend\components;
4 4
 
5
+use Yii;
5 6
 use app\backend\BackendModule;
6 7
 use app\components\BaseModule;
7
-use Yii;
8
+use kartik\icons\Icon;
8 9
 use yii\db\ActiveRecord;
9 10
 use yii\helpers\Html;
10
-use kartik\icons\Icon;
11 11
 
12 12
 class Helper
13 13
 {
Please login to merge, or discard this patch.
application/models/Search.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -33,6 +33,9 @@
 block discarded – undo
33 33
         ];
34 34
     }
35 35
 
36
+    /**
37
+     * @param string $key
38
+     */
36 39
     public function searchByKey($key)
37 40
     {
38 41
 
Please login to merge, or discard this 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\models;
4 4
 
5
+use Yii;
5 6
 use app\components\search\SearchEvent;
6 7
 use app\components\search\SearchInterface;
7 8
 use app\modules\core\CoreModule;
8
-use Yii;
9 9
 use yii\base\Model;
10 10
 use yii\db\Query;
11 11
 
Please login to merge, or discard this patch.
application/modules/core/controllers/BackendChunkController.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,15 +2,15 @@
 block discarded – undo
2 2
 
3 3
 namespace app\modules\core\controllers;
4 4
 
5
+use Yii;
5 6
 use app\backend\components\BackendController;
6 7
 use app\backend\traits\BackendRedirect;
8
+use app\modules\core\models\ContentBlock;
7 9
 use app\modules\core\models\ContentBlockGroup;
8 10
 use devgroup\JsTreeWidget\AdjacencyFullTreeDataAction;
9 11
 use devgroup\JsTreeWidget\TreeNodeMoveAction;
10 12
 use devgroup\JsTreeWidget\TreeNodesReorderAction;
11 13
 use yii\filters\AccessControl;
12
-use app\modules\core\models\ContentBlock;
13
-use Yii;
14 14
 use yii\helpers\Url;
15 15
 use yii\web\NotFoundHttpException;
16 16
 
Please login to merge, or discard this patch.
application/models/Submission.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
     protected $subject = null;
45 45
 
46 46
     /**
47
-     * @return null
47
+     * @return string
48 48
      */
49 49
     public function getSubject()
50 50
     {
Please login to merge, or discard this 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\models;
4 4
 
5
+use Yii;
5 6
 use app\properties\AbstractModel;
6 7
 use app\properties\HasProperties;
7
-use Yii;
8 8
 use yii\data\ActiveDataProvider;
9
-use yii\helpers\ArrayHelper;
10 9
 
11 10
 /**
12 11
  * This is the model class for table "submission".
Please login to merge, or discard this patch.
application/backend/actions/MassPublishAction.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,10 +19,10 @@
 block discarded – undo
19 19
 namespace app\backend\actions;
20 20
 
21 21
 use Yii;
22
+use app\backend\widgets\PublishSwitchButtons;
22 23
 use yii\base\Action;
23
-use yii\web\Response;
24 24
 use yii\web\NotFoundHttpException;
25
-use app\backend\widgets\PublishSwitchButtons;
25
+use yii\web\Response;
26 26
 use yii\web\ServerErrorHttpException;
27 27
 
28 28
 class MassPublishAction extends Action
Please login to merge, or discard this patch.
application/backend/widgets/PublishSwitchButtons.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,11 +2,11 @@
 block discarded – undo
2 2
 
3 3
 namespace app\backend\widgets;
4 4
 
5
+use Yii;
6
+use kartik\icons\Icon;
5 7
 use yii\base\InvalidParamException;
6 8
 use yii\base\Widget;
7 9
 use yii\helpers\Html;
8
-use kartik\icons\Icon;
9
-use Yii;
10 10
 
11 11
 class PublishSwitchButtons extends Widget
12 12
 {
Please login to merge, or discard this patch.