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 ( 34fb17...bef128 )
by Ivan
11:12
created
application/properties/url/FullCategoryPathPart.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\properties\url;
4 4
 
5
+use Yii;
5 6
 use app\modules\shop\models\Category;
6 7
 use app\modules\shop\models\Product;
7 8
 use devgroup\TagDependencyHelper\ActiveRecordHelper;
8
-use Yii;
9 9
 
10 10
 class FullCategoryPathPart extends CategoryPart
11 11
 {
Please login to merge, or discard this patch.
application/properties/url/StaticPart.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use app\modules\shop\models\Category;
6 6
 use devgroup\TagDependencyHelper\ActiveRecordHelper;
7
-use Yii;
8 7
 
9 8
 class StaticPart extends UrlPart
10 9
 {
Please login to merge, or discard this patch.
application/tests/unit/behaviors/SortableBehaviorTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use app;
6 6
 use app\tests\fixtures\LinkAnchorsFixture;
7
-use Yii;
8 7
 use yii\codeception\DbTestCase;
9 8
 
10 9
 class SortableBehaviorTest extends DbTestCase
Please login to merge, or discard this patch.
application/widgets/CategoriesWidget.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,11 +2,11 @@
 block discarded – undo
2 2
 
3 3
 namespace app\widgets;
4 4
 
5
-use app\models\ObjectStaticValues;
6
-use app\modules\shop\models\Product;
5
+use Yii;
7 6
 use app\models\BaseObject;
7
+use app\models\ObjectStaticValues;
8 8
 use app\modules\shop\models\Category;
9
-use Yii;
9
+use app\modules\shop\models\Product;
10 10
 use yii\base\Widget;
11 11
 use yii\db\Expression;
12 12
 use yii\db\Query;
Please login to merge, or discard this patch.
application/widgets/filter/FilterWidget.php 1 patch
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\widgets\filter;
4 4
 
5
+use Yii;
5 6
 use app\models\BaseObject;
6 7
 use app\models\ObjectStaticValues;
7 8
 use app\models\Property;
8 9
 use app\models\PropertyGroup;
9 10
 use app\models\PropertyStaticValues;
10 11
 use app\modules\Shop\models\Product;
11
-use Yii;
12 12
 use yii\base\Widget;
13 13
 use yii\caching\TagDependency;
14 14
 use yii\db\Query;
Please login to merge, or discard this patch.
application/widgets/FilteredCategoriesWidget.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,11 +2,11 @@
 block discarded – undo
2 2
 
3 3
 namespace app\widgets;
4 4
 
5
+use Yii;
5 6
 use app\models\BaseObject;
6 7
 use app\modules\shop\models\Category;
7 8
 use app\properties\PropertiesHelper;
8 9
 use devgroup\TagDependencyHelper\ActiveRecordHelper;
9
-use Yii;
10 10
 use yii\caching\TagDependency;
11 11
 
12 12
 class FilteredCategoriesWidget extends PlainCategoriesWidget
Please login to merge, or discard this patch.
application/widgets/PagesList.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\widgets;
4 4
 
5
+use Yii;
5 6
 use app\modules\page\models\Page;
6 7
 use devgroup\TagDependencyHelper\ActiveRecordHelper;
7
-use Yii;
8 8
 use yii\base\Widget;
9 9
 use yii\caching\TagDependency;
10 10
 
Please login to merge, or discard this patch.
application/widgets/PlainCategoriesWidget.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\widgets;
4 4
 
5
+use Yii;
5 6
 use app\modules\shop\models\Category;
6 7
 use devgroup\TagDependencyHelper\ActiveRecordHelper;
7
-use Yii;
8 8
 use yii\base\Widget;
9 9
 
10 10
 class PlainCategoriesWidget extends Widget
Please login to merge, or discard this patch.
application/modules/shop/views/backend-category-group/index.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use yii\helpers\Html;
4
-use kartik\dynagrid\DynaGrid;
5 3
 use app\backend\components\ActionColumn;
4
+use kartik\dynagrid\DynaGrid;
6 5
 use kartik\icons\Icon;
6
+use yii\helpers\Html;
7 7
 
8 8
 /* @var $this yii\web\View */
9 9
 /* @var $searchModel app\components\SearchModel */
Please login to merge, or discard this patch.