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/review/widgets/rating/RatingWidget.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\review\widgets\rating;
4 4
 
5
-use app\modules\review\models\RatingItem;
6 5
 use Yii;
6
+use app\modules\review\models\RatingItem;
7 7
 use yii\base\Widget;
8 8
 
9 9
 class RatingWidget extends Widget
Please login to merge, or discard this patch.
application/modules/review/widgets/ReviewsWidget.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,15 +2,15 @@
 block discarded – undo
2 2
 
3 3
 namespace app\modules\review\widgets;
4 4
 
5
+use Yii;
5 6
 use app\components\ObjectRule;
6 7
 use app\models\Form;
8
+use app\models\Object;
9
+use app\models\PropertyGroup;
7 10
 use app\modules\review\models\Review;
8 11
 use yii\base\InvalidParamException;
9 12
 use yii\base\Widget;
10 13
 use yii\data\ArrayDataProvider;
11
-use Yii;
12
-use app\models\Object;
13
-use app\models\PropertyGroup;
14 14
 use yii\db\ActiveRecord;
15 15
 
16 16
 class ReviewsWidget extends Widget
Please login to merge, or discard this patch.
application/modules/review/widgets/views/reviews.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,9 +12,9 @@
 block discarded – undo
12 12
 
13 13
 /** @var \yii\data\ArrayDataProvider $reviews */
14 14
 
15
-use yii\widgets\ActiveForm;
16
-use yii\helpers\Html;
17 15
 use app\models\Property;
16
+use yii\helpers\Html;
17
+use yii\widgets\ActiveForm;
18 18
 
19 19
 $allowRate = !empty($ratingGroupName);
20 20
 
Please login to merge, or discard this patch.
application/modules/seo/controllers/ManageController.php 1 patch
Unused Use Statements   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -2,23 +2,23 @@
 block discarded – undo
2 2
 
3 3
 namespace app\modules\seo\controllers;
4 4
 
5
+use Yii;
5 6
 use app\backend\components\BackendController;
6
-use app\modules\shop\models\Category;
7
-use app\modules\shop\models\OrderTransaction;
8
-use app\modules\shop\models\Product;
9 7
 use app\modules\seo\models\Config;
10 8
 use app\modules\seo\models\Counter;
11 9
 use app\modules\seo\models\Meta;
12 10
 use app\modules\seo\models\Redirect;
13 11
 use app\modules\seo\models\Robots;
14
-use devgroup\ace\AceHelper;
12
+use app\modules\shop\models\Category;
13
+use app\modules\shop\models\OrderTransaction;
14
+use app\modules\shop\models\Product;
15 15
 use devgroup\TagDependencyHelper\ActiveRecordHelper;
16
+use devgroup\ace\AceHelper;
16 17
 use yii\base\Event;
17 18
 use yii\filters\AccessControl;
18 19
 use yii\helpers\Json;
19
-use yii\web\NotFoundHttpException;
20 20
 use yii\helpers\Url;
21
-use Yii;
21
+use yii\web\NotFoundHttpException;
22 22
 
23 23
 class ManageController extends BackendController
24 24
 {
Please login to merge, or discard this patch.
application/modules/seo/models/OpenGraphObject.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\seo\models;
4 4
 
5
-use app\models\Object;
6 5
 use Yii;
6
+use app\models\Object;
7 7
 
8 8
 /**
9 9
  * This is the model class for table "{{%open_graph_object}}".
Please login to merge, or discard this patch.
application/modules/seo/models/SitemapXML.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -11,6 +11,9 @@  discard block
 block discarded – undo
11 11
     protected $fileHandler;
12 12
     protected $urlsCount = 0;
13 13
 
14
+    /**
15
+     * @return resource
16
+     */
14 17
     protected function getFileHandler()
15 18
     {
16 19
         if ($this->fileHandler === null) {
@@ -38,12 +41,18 @@  discard block
 block discarded – undo
38 41
         return rename($this->directory . $oldName, $this->directory . $newName);
39 42
     }
40 43
 
44
+    /**
45
+     * @param string $domain
46
+     */
41 47
     public function __construct($directory, $domain)
42 48
     {
43 49
         $this->directory = $directory;
44 50
         $this->domain = $domain;
45 51
     }
46 52
 
53
+    /**
54
+     * @param string $url
55
+     */
47 56
     public function addUrl($url)
48 57
     {
49 58
         // @todo convert "wrong" symbols
Please login to merge, or discard this patch.
application/modules/seo/views/open-graph/index.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -1,9 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 use app\backend\components\ActionColumn;
4
-use kartik\dynagrid\DynaGrid;
5
-use kartik\helpers\Html;
6
-use kartik\icons\Icon;
7 4
 
8 5
 /**
9 6
  * @var $this yii\web\View
Please login to merge, or discard this patch.
application/modules/shop/backend/FilterSetsController.php 1 patch
Unused Use Statements   +4 added lines, -5 removed lines patch added patch discarded remove patch
@@ -2,19 +2,18 @@
 block discarded – undo
2 2
 
3 3
 namespace app\modules\shop\backend;
4 4
 
5
+use Yii;
5 6
 use app\backend\components\BackendController;
6
-use app\modules\shop\models\Category;
7 7
 use app\models\Object;
8
-use app\modules\shop\models\Product;
9 8
 use app\models\Property;
10 9
 use app\models\PropertyGroup;
11 10
 use app\models\PropertyStaticValues;
11
+use app\modules\shop\models\Category;
12 12
 use app\modules\shop\models\FilterSets;
13
+use app\modules\shop\models\Product;
14
+use devgroup\JsTreeWidget\AdjacencyFullTreeDataAction;
13 15
 use devgroup\TagDependencyHelper\ActiveRecordHelper;
14
-use Yii;
15
-use yii\debug\components\search\Filter;
16 16
 use yii\filters\AccessControl;
17
-use devgroup\JsTreeWidget\AdjacencyFullTreeDataAction;
18 17
 use yii\web\BadRequestHttpException;
19 18
 use yii\web\NotFoundHttpException;
20 19
 use yii\web\Response;
Please login to merge, or discard this patch.
application/modules/shop/controllers/BackendCategoryGroupController.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,13 +2,13 @@
 block discarded – undo
2 2
 
3 3
 namespace app\modules\shop\controllers;
4 4
 
5
-use app\backend\components\BackendController;
6 5
 use Yii;
7
-use app\modules\shop\models\CategoryGroup;
6
+use app\backend\components\BackendController;
8 7
 use app\components\SearchModel;
8
+use app\modules\shop\models\CategoryGroup;
9 9
 use yii\filters\AccessControl;
10
-use yii\web\NotFoundHttpException;
11 10
 use yii\helpers\Url;
11
+use yii\web\NotFoundHttpException;
12 12
 
13 13
 /**
14 14
  * CategoryGroupController implements the CRUD actions for CategoryGroup model.
Please login to merge, or discard this patch.