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
Pull Request — master (#392)
by
unknown
12:47
created
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/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.
application/modules/page/models/Page.php 2 patches
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,13 +2,13 @@
 block discarded – undo
2 2
 
3 3
 namespace app\modules\page\models;
4 4
 
5
+use Yii;
5 6
 use app\behaviors\CleanRelations;
6 7
 use app\behaviors\Tree;
7 8
 use app\modules\image\models\Image;
8 9
 use app\properties\HasProperties;
9 10
 use app\traits\GetImages;
10 11
 use devgroup\TagDependencyHelper\ActiveRecordHelper;
11
-use Yii;
12 12
 use yii\behaviors\TimestampBehavior;
13 13
 use yii\caching\TagDependency;
14 14
 use yii\data\ActiveDataProvider;
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -185,7 +185,7 @@
 block discarded – undo
185 185
     /**
186 186
      * @param int $id
187 187
      * @param int $is_published
188
-     * @return mixed
188
+     * @return ActiveRecord
189 189
      */
190 190
     public static function findById($id, $is_published = 1)
191 191
     {
Please login to merge, or discard this patch.
application/modules/review/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\review\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.
application/modules/review/models/RatingItem.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@
 block discarded – undo
121 121
     }
122 122
 
123 123
     /**
124
-     * @param null $name
124
+     * @param string|null $name
125 125
      * @return array|null|\yii\db\ActiveRecord
126 126
      */
127 127
     public static function getGroupByName($name = 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,9 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace app\modules\review\models;
4 4
 
5
+use Yii;
5 6
 use app\traits\FindById;
6 7
 use devgroup\TagDependencyHelper\ActiveRecordHelper;
7
-use Yii;
8 8
 use yii\caching\TagDependency;
9 9
 use yii\helpers\Json;
10 10
 
Please login to merge, or discard this patch.
application/modules/review/models/RatingValues.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\models;
4 4
 
5
-use devgroup\TagDependencyHelper\ActiveRecordHelper;
6 5
 use Yii;
6
+use devgroup\TagDependencyHelper\ActiveRecordHelper;
7 7
 use yii\caching\TagDependency;
8 8
 use yii\db\ActiveRecord;
9 9
 
Please login to merge, or discard this patch.
application/modules/review/models/Review.php 2 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -145,6 +145,7 @@
 block discarded – undo
145 145
     /**
146 146
      * Получает отзывы по конкретной инстанции модели
147 147
      * @var $models \app\modules\review\models\Review[]
148
+     * @param integer $formId
148 149
      * @return array
149 150
      */
150 151
     public static function getForObjectModel($object_model_id, $object_id, $formId, $sort = SORT_ASC)
Please login to merge, or discard this patch.
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,12 +2,12 @@
 block discarded – undo
2 2
 
3 3
 namespace app\modules\review\models;
4 4
 
5
-use app\models\BaseObject;
6
-use devgroup\TagDependencyHelper\ActiveRecordHelper;
7 5
 use Yii;
6
+use app\models\BaseObject;
8 7
 use app\models\Submission;
9
-use yii\caching\TagDependency;
10 8
 use app\properties\HasProperties;
9
+use devgroup\TagDependencyHelper\ActiveRecordHelper;
10
+use yii\caching\TagDependency;
11 11
 use yii\db\ActiveQuery;
12 12
 use yii\db\ActiveRecord;
13 13
 
Please login to merge, or discard this patch.
application/modules/review/views/backend-review/index.php 1 patch
Unused Use Statements   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,11 +6,10 @@
 block discarded – undo
6 6
  * @var app\backgroundtasks\models\Task $searchModel
7 7
  */
8 8
 
9
+use app\modules\review\models\Review;
9 10
 use kartik\dynagrid\DynaGrid;
10 11
 use kartik\helpers\Html;
11 12
 use yii\helpers\Url;
12
-use kartik\grid\GridView;
13
-use app\modules\review\models\Review;
14 13
 
15 14
 $this->title = Yii::t('app', 'Reviews');
16 15
 $this->params['breadcrumbs'][] = $this->title;
Please login to merge, or discard this patch.