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.
Test Setup Failed
Push — filters ( 47b347...3c9cff )
by Alexander
109:58 queued 94:21
created
application/behaviors/Tree.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,12 +2,12 @@
 block discarded – undo
2 2
 
3 3
 namespace app\behaviors;
4 4
 
5
-use app\modules\shop\models\Category;
6 5
 use Yii;
7
-use yii\helpers\ArrayHelper;
6
+use app\modules\shop\models\Category;
8 7
 use yii\base\Behavior;
9 8
 use yii\caching\TagDependency;
10 9
 use yii\db\ActiveRecord;
10
+use yii\helpers\ArrayHelper;
11 11
 
12 12
 /**
13 13
  * Class Tree
Please login to merge, or discard this patch.
application/commands/AdminController.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,11 +3,11 @@
 block discarded – undo
3 3
 namespace app\commands;
4 4
 
5 5
 use Imagine\Image\ManipulatorInterface;
6
-use app\backend\actions\FlushCacheConsoleAction;
7 6
 use Yii;
8
-use yii\console\Controller;
9 7
 use app;
8
+use app\backend\actions\FlushCacheConsoleAction;
10 9
 use app\modules\image\models\Image;
10
+use yii\console\Controller;
11 11
 
12 12
 /**
13 13
  * Admin commands
Please login to merge, or discard this patch.
application/commands/SubmissionsController.php 1 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/components/payment/PayUPayment.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -3,11 +3,8 @@
 block discarded – undo
3 3
 namespace app\components\payment;
4 4
 
5 5
 use app\modules\shop\models\Currency;
6
-use app\modules\shop\models\Order;
7 6
 use app\modules\shop\models\OrderItem;
8 7
 use app\modules\shop\models\OrderTransaction;
9
-use yii\helpers\Json;
10
-use yii\helpers\Url;
11 8
 use yii\web\BadRequestHttpException;
12 9
 use yii\web\HttpException;
13 10
 use yii\web\Response;
Please login to merge, or discard this patch.
application/components/payment/PlatronPayment.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace app\components\payment;
3 3
 
4
-use app\modules\shop\models\OrderTransaction;
5 4
 use SimpleXMLElement;
6 5
 use Yii;
6
+use app\modules\shop\models\OrderTransaction;
7 7
 use yii\helpers\ArrayHelper;
8 8
 use yii\helpers\Json;
9 9
 use yii\web\HttpException;
Please login to merge, or discard this patch.
application/components/swap/provider/CurrencyRateMultiProvider.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\components\swap\provider;
4 4
 
5
-use app\modules\shop\models\CurrencyRateProvider;
6 5
 use Ivory\HttpAdapter\HttpAdapterInterface;
7 6
 use Swap\Exception\Exception;
8 7
 use Swap\Model\CurrencyPair;
9 8
 use Swap\Model\Rate;
10 9
 use Swap\Provider\AbstractProvider;
11 10
 use Swap\Swap;
11
+use app\modules\shop\models\CurrencyRateProvider;
12 12
 
13 13
 /**
14 14
  * Class MultiProvider
Please login to merge, or discard this patch.
application/extensions/DefaultTheme/models/ThemeActiveWidgets.php 1 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/extensions/DefaultTheme/models/ThemeParts.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,15 +2,15 @@
 block discarded – undo
2 2
 
3 3
 namespace app\extensions\DefaultTheme\models;
4 4
 
5
+use Yii;
5 6
 use app\components\ViewElementsGathener;
6 7
 use app\extensions\DefaultTheme\components\BaseWidget;
7 8
 use app\traits\IdentityMap;
8
-use Yii;
9 9
 use yii\base\InvalidConfigException;
10 10
 use yii\caching\TagDependency;
11 11
 use \devgroup\TagDependencyHelper\ActiveRecordHelper;
12
-use yii\helpers\ArrayHelper;
13 12
 use yii\data\ActiveDataProvider;
13
+use yii\helpers\ArrayHelper;
14 14
 use yii\helpers\Json;
15 15
 
16 16
 /**
Please login to merge, or discard this patch.
application/extensions/DefaultTheme/models/ThemeWidgets.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\extensions\DefaultTheme\models;
4 4
 
5
-use app\traits\IdentityMap;
6 5
 use Yii;
6
+use app\traits\IdentityMap;
7 7
 use yii\caching\TagDependency;
8 8
 use yii\data\ActiveDataProvider;
9 9
 use \devgroup\TagDependencyHelper\ActiveRecordHelper;
Please login to merge, or discard this patch.