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 — Philosoft-patch-1 ( 69c420 )
by Alexander
09:39
created
application/modules/data/models/CommercemlGuid.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace app\modules\data\models;
4 4
 
5
-use app\modules\shop\models\Product;
6
-use app\models\Property;
7 5
 use Yii;
6
+use app\models\Property;
7
+use app\modules\shop\models\Product;
8 8
 
9 9
 /**
10 10
  * This is the model class for table "{{%commerceml_guid}}".
Please login to merge, or discard this patch.
application/modules/data/models/Export.php 1 patch
Unused Use Statements   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,9 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace app\modules\data\models;
4 4
 
5
-use app\backgroundtasks\models\Task;
6
-use app\models\Object;
7 5
 use Yii;
6
+use app\models\Object;
8 7
 use yii\behaviors\TimestampBehavior;
9 8
 
10 9
 /**
Please login to merge, or discard this patch.
application/modules/data/models/ImportModel.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace app\modules\data\models;
4 4
 
5
-use app\modules\data\DataModule;
6 5
 use Yii;
7 6
 use yii\base\Model;
8 7
 use yii\helpers\Json;
Please login to merge, or discard this patch.
application/modules/image/controllers/BackendThumbnailController.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\controllers;
4 4
 
5
-use app\backgroundtasks\helpers\BackgroundTasks;
6 5
 use Yii;
6
+use app\backgroundtasks\helpers\BackgroundTasks;
7 7
 use yii\filters\AccessControl;
8 8
 
9 9
 class BackendThumbnailController extends \app\backend\components\BackendController
Please login to merge, or discard this patch.
application/modules/image/controllers/BackendThumbnailSizeController.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\controllers;
4 4
 
5
-use app\modules\image\models\ThumbnailSize;
6 5
 use Yii;
6
+use app\modules\image\models\ThumbnailSize;
7 7
 use yii\filters\AccessControl;
8 8
 use yii\helpers\Url;
9 9
 use yii\web\NotFoundHttpException;
Please login to merge, or discard this patch.
application/modules/image/controllers/BackendWatermarkController.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\controllers;
4 4
 
5
-use app\modules\image\models\Watermark;
6 5
 use Yii;
6
+use app\modules\image\models\Watermark;
7 7
 use yii\filters\AccessControl;
8 8
 use yii\helpers\Url;
9 9
 use yii\web\NotFoundHttpException;
Please login to merge, or discard this patch.
application/modules/image/models/ErrorImage.php 2 patches
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
         $model = Product::findById($id, null);
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/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
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
 
63 63
     /**
64 64
      * Return thumbnail width watermark or create if not exist
65
-     * @param $thumb Thumbnail
65
+     * @param Thumbnail $thumb Thumbnail
66 66
      * @param $water Watermark
67 67
      * @return thumbnail
68 68
      */
Please login to merge, or discard this 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\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.