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/extensions/migrations/alpha-beta/m150430_084230_commerceml.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use yii\db\Schema;
4 3
 use yii\db\Migration;
4
+use yii\db\Schema;
5 5
 
6 6
 class m150430_084230_commerceml extends Migration
7 7
 {
Please login to merge, or discard this patch.
extensions/migrations/alpha-beta/m150515_141224_order_customers.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use yii\db\Schema;
4 3
 use yii\db\Migration;
4
+use yii\db\Schema;
5 5
 
6 6
 class m150515_141224_order_customers extends Migration
7 7
 {
Please login to merge, or discard this patch.
application/extensions/migrations/alpha-beta/m150531_170721_final_stage.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,5 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use yii\db\Schema;
4 3
 use yii\db\Migration;
5 4
 
6 5
 class m150531_170721_final_stage extends Migration
Please login to merge, or discard this patch.
extensions/migrations/alpha-beta/m150601_111734_order_in_cart.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use yii\db\Schema;
4 3
 use yii\db\Migration;
4
+use yii\db\Schema;
5 5
 
6 6
 class m150601_111734_order_in_cart extends Migration
7 7
 {
Please login to merge, or discard this patch.
application/migrations/m150608_070448_new_theme_widgets.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,5 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use yii\db\Schema;
4 3
 use yii\db\Migration;
5 4
 
6 5
 class m150608_070448_new_theme_widgets extends Migration
Please login to merge, or discard this patch.
application/migrations/m150609_064330_backend_menu.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,5 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use yii\db\Schema;
4 3
 use yii\db\Migration;
5 4
 
6 5
 class m150609_064330_backend_menu extends Migration
Please login to merge, or discard this patch.
application/models/BaseThemeConfigurationModel.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace app\models;
4 4
 
5 5
 use app;
6
-use Yii;
7 6
 
8 7
 class BaseThemeConfigurationModel extends app\modules\config\models\BaseConfigurationModel
9 8
 {
Please login to merge, or discard this patch.
application/models/Form.php 2 patches
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\models;
4 4
 
5
+use Yii;
5 6
 use app\properties\AbstractModel;
6 7
 use app\properties\HasProperties;
7
-use Yii;
8
+use devgroup\TagDependencyHelper\ActiveRecordHelper;
8 9
 use yii\caching\TagDependency;
9 10
 use yii\data\ActiveDataProvider;
10
-use devgroup\TagDependencyHelper\ActiveRecordHelper;
11 11
 
12 12
 /**
13 13
  * This is the model class for table "form".
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -131,7 +131,7 @@
 block discarded – undo
131 131
     }
132 132
 
133 133
     /**
134
-     * @return Submission[]|array
134
+     * @return \yii\db\ActiveQuery
135 135
      */
136 136
     public function getSubmissions()
137 137
     {
Please login to merge, or discard this patch.
application/models/Property.php 2 patches
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace app\models;
3 3
 
4
+use Yii;
4 5
 use app\modules\shop\models\FilterSets;
5 6
 use app\properties\HasProperties;
6 7
 use app\properties\PropertyHandlers;
7 8
 use app\traits\GetImages;
8
-use Yii;
9 9
 use yii\behaviors\AttributeBehavior;
10 10
 use yii\caching\TagDependency;
11 11
 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
@@ -432,7 +432,7 @@
 block discarded – undo
432 432
     }
433 433
 
434 434
     /**
435
-     * @return array
435
+     * @return string[]
436 436
      */
437 437
     public static function getAliases()
438 438
     {
Please login to merge, or discard this patch.