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/migrations/m150827_075105_product_addons.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use yii\db\Migration;
4
-use app\modules\shop\models\Addon;
5 3
 use app\backend\models\BackendMenu;
4
+use app\modules\shop\models\Addon;
5
+use yii\db\Migration;
6 6
 
7 7
 class m150827_075105_product_addons extends Migration
8 8
 {
Please login to merge, or discard this patch.
application/models/BaseObject.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,14 +1,14 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace app\models;
3 3
 
4
+use Yii;
4 5
 use app\modules\data\models\Export;
5 6
 use app\modules\data\models\Import;
6
-use Yii;
7
+use devgroup\TagDependencyHelper\ActiveRecordHelper;
7 8
 use yii\caching\TagDependency;
8 9
 use yii\db\ActiveRecord;
9 10
 use yii\db\Query;
10 11
 use yii\helpers\ArrayHelper;
11
-use devgroup\TagDependencyHelper\ActiveRecordHelper;
12 12
 
13 13
 /**
14 14
  * This is the model class for table "object".
Please login to merge, or discard this patch.
application/models/Slider.php 1 patch
Unused Use Statements   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,9 +3,8 @@
 block discarded – undo
3 3
 namespace app\models;
4 4
 
5 5
 
6
-use devgroup\TagDependencyHelper\ActiveRecordHelper;
7 6
 use Yii;
8
-use yii\helpers\ArrayHelper;
7
+use devgroup\TagDependencyHelper\ActiveRecordHelper;
9 8
 
10 9
 /**
11 10
  * This is the model class for table "{{%slider}}".
Please login to merge, or discard this patch.
application/modules/config/helpers/ConfigurationUpdater.php 1 patch
Unused Use Statements   +1 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,13 +2,11 @@
 block discarded – undo
2 2
 
3 3
 namespace app\modules\config\helpers;
4 4
 
5
+use Yii;
5 6
 use app;
6 7
 use app\modules\config\components\ConfigurationSaveEvent;
7 8
 use devgroup\TagDependencyHelper\ActiveRecordHelper;
8
-use Yii;
9 9
 use yii\caching\TagDependency;
10
-use yii\helpers\ArrayHelper;
11
-use yii\helpers\VarDumper;
12 10
 
13 11
 /**
14 12
  * Class ConfigurationUpdater deals with saving configuration.
Please login to merge, or discard this patch.
application/modules/core/controllers/EventsBeaconController.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\modules\core\controllers;
4 4
 
5
+use Yii;
5 6
 use app;
6 7
 use app\components\Controller;
7 8
 use app\modules\core\helpers\EventTriggeringHelper;
8 9
 use app\modules\core\models\Events;
9
-use Yii;
10 10
 use yii\helpers\Json;
11 11
 
12 12
 class EventsBeaconController extends Controller
Please login to merge, or discard this patch.
application/modules/core/decorators/ContentBlock.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,8 +53,8 @@
 block discarded – undo
53 53
 
54 54
     /**
55 55
      * @param $content
56
-     * @param $contentKey
57
-     * @param $dependency
56
+     * @param string $contentKey
57
+     * @param TagDependency $dependency
58 58
      * @return string
59 59
      */
60 60
     private function processChunks($content, $contentKey, $dependency)
Please login to merge, or discard this patch.
Unused Use Statements   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,12 +2,11 @@
 block discarded – undo
2 2
 
3 3
 namespace app\modules\core\decorators;
4 4
 
5
-use app;
6
-
7 5
 use Yii;
6
+use app;
8 7
 use app\modules\core\helpers\ContentBlockHelper;
9
-use yii\caching\TagDependency;
10 8
 use devgroup\TagDependencyHelper\ActiveRecordHelper;
9
+use yii\caching\TagDependency;
11 10
 
12 11
 class ContentBlock extends PreDecorator
13 12
 {
Please login to merge, or discard this patch.
application/modules/core/views/configurable/_config.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,8 +5,8 @@
 block discarded – undo
5 5
 /** @var \app\modules\core\models\ConfigConfigurationModel $model */
6 6
 
7 7
 use app\backend\widgets\BackendWidget;
8
-use app\models\SpamChecker;
9 8
 use app\components\Helper;
9
+use app\models\SpamChecker;
10 10
 use kartik\widgets\SwitchInput;
11 11
 
12 12
 ?>
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\BaseObject;
7 5
 use Yii;
6
+use app\models\BaseObject;
8 7
 use yii\behaviors\TimestampBehavior;
9 8
 
10 9
 /**
Please login to merge, or discard this patch.
application/modules/data/models/Import.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\data\models;
4 4
 
5
-use app\models\BaseObject;
6 5
 use Yii;
6
+use app\models\BaseObject;
7 7
 use yii\behaviors\TimestampBehavior;
8 8
 
9 9
 /**
Please login to merge, or discard this patch.