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 ( 9473d9...a69b27 )
by Alexander
11:37 queued 04:57
created
application/modules/image/models/ErrorImage.php 2 patches
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\image\models;
4 4
 
5
+use Yii;
5 6
 use app\backend\components\Helper;
6 7
 use app\models\Object;
7 8
 use app\modules\page\models\Page;
8 9
 use app\modules\shop\models\Category;
9 10
 use app\modules\shop\models\Product;
10
-use Yii;
11 11
 use yii\helpers\Html;
12 12
 
13 13
 /**
Please login to merge, or discard this patch.
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -22,6 +22,9 @@  discard block
 block discarded – undo
22 22
     protected $backendLink;
23 23
     protected static $classNames;
24 24
 
25
+    /**
26
+     * @param integer $id
27
+     */
25 28
     protected function getPageLinks($id)
26 29
     {
27 30
         /** @var Page $model */
@@ -46,6 +49,9 @@  discard block
 block discarded – undo
46 49
         }
47 50
     }
48 51
 
52
+    /**
53
+     * @param integer $id
54
+     */
49 55
     protected function getCategoryLinks($id)
50 56
     {
51 57
         $model = Category::findById($id, null);
@@ -72,6 +78,9 @@  discard block
 block discarded – undo
72 78
         }
73 79
     }
74 80
 
81
+    /**
82
+     * @param integer $id
83
+     */
75 84
     protected function getProductLinks($id)
76 85
     {
77 86
         $product = Yii::$container->get(Product::class);
Please login to merge, or discard this patch.
application/modules/image/models/ThumbnailSize.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -93,6 +93,9 @@
 block discarded – undo
93 93
         return $dataProvider;
94 94
     }
95 95
 
96
+    /**
97
+     * @param string $demand
98
+     */
96 99
     public static function getByDemand($demand)
97 100
     {
98 101
         $sizes = explode('x', $demand);
Please login to merge, or discard this patch.
application/modules/image/models/ThumbnailWatermark.php 2 patches
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\image\models;
4 4
 
5
-use app\behaviors\ImageExist;
6 5
 use Imagine\Image\Box;
7 6
 use Yii;
7
+use app\behaviors\ImageExist;
8 8
 use yii\base\Exception;
9 9
 use yii\imagine\Image as Imagine;
10 10
 
Please login to merge, or discard this patch.
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -62,9 +62,9 @@
 block discarded – undo
62 62
 
63 63
     /**
64 64
      * Return thumbnail width watermark or create if not exist
65
-     * @param $thumb Thumbnail
66
-     * @param $water Watermark
67
-     * @return thumbnail
65
+     * @param Thumbnail $thumb Thumbnail
66
+     * @param Watermark $water Watermark
67
+     * @return ThumbnailWatermark
68 68
      */
69 69
     public static function getThumbnailWatermark($thumb, $water)
70 70
     {
Please login to merge, or discard this patch.
application/modules/image/widgets/ImageDropzone.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace app\modules\image\widgets;
4 4
 
5
-use app\modules\image\models\Image;
6
-use devgroup\dropzone\DropZone;
7 5
 use Imagine\Image\ManipulatorInterface;
8 6
 use Yii;
7
+use app\modules\image\models\Image;
8
+use devgroup\dropzone\DropZone;
9 9
 use yii\helpers\ArrayHelper;
10 10
 use yii\helpers\Html;
11 11
 use yii\helpers\Json;
Please login to merge, or discard this patch.
application/modules/image/widgets/ObjectImageWidget.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\modules\image\widgets;
4 4
 
5
+use Yii;
5 6
 use app\modules\image\models\Image;
6 7
 use app\traits\GetImages;
7 8
 use devgroup\TagDependencyHelper\ActiveRecordHelper;
8
-use Yii;
9 9
 use yii\base\Widget;
10 10
 use yii\caching\TagDependency;
11 11
 
Please login to merge, or discard this patch.
application/modules/image/widgets/UploadAction.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\modules\image\widgets;
4 4
 
5
-use app\components\Helper;
6 5
 use Yii;
6
+use app\components\Helper;
7 7
 use app\modules\image\models\Image;
8 8
 use yii\helpers\ArrayHelper;
9 9
 use yii\helpers\Json;
Please login to merge, or discard this patch.
application/modules/installer/commands/InstallController.php 1 patch
Unused Use Statements   +3 added lines, -5 removed lines patch added patch discarded remove patch
@@ -2,15 +2,13 @@
 block discarded – undo
2 2
 
3 3
 namespace app\modules\installer\commands;
4 4
 
5
+use Yii;
5 6
 use app\modules\core\helpers\UpdateHelper;
6
-use app\modules\installer\models\AdminUser;
7
-use app\modules\installer\models\DbConfig;
8 7
 use app\modules\installer\components\InstallerFilter;
9 8
 use app\modules\installer\components\InstallerHelper;
9
+use app\modules\installer\models\AdminUser;
10
+use app\modules\installer\models\DbConfig;
10 11
 use app\modules\installer\models\FinalStep;
11
-use app\modules\installer\models\MigrateModel;
12
-use Yii;
13
-use yii\base\DynamicModel;
14 12
 use yii\console\Controller;
15 13
 use yii\helpers\Console;
16 14
 
Please login to merge, or discard this patch.
application/modules/installer/controllers/InstallerController.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\installer\controllers;
4 4
 
5
+use Yii;
5 6
 use app\modules\core\helpers\UpdateHelper;
6
-use app\modules\installer\models\AdminUser;
7
-use app\modules\installer\models\DbConfig;
8 7
 use app\modules\installer\components\InstallerFilter;
9 8
 use app\modules\installer\components\InstallerHelper;
9
+use app\modules\installer\models\AdminUser;
10
+use app\modules\installer\models\DbConfig;
10 11
 use app\modules\installer\models\FinalStep;
11 12
 use app\modules\installer\models\MigrateModel;
12
-use Yii;
13 13
 use yii\base\DynamicModel;
14 14
 use yii\web\Controller;
15 15
 
Please login to merge, or discard this patch.
application/modules/page/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\page\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.