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 — small_fix_filter ( 71c4d5...e9de62 )
by
unknown
09:28
created
application/extensions/migrations/alpha-beta/m141023_084857_init.php 1 patch
Unused Use Statements   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -4,37 +4,37 @@
 block discarded – undo
4 4
 use app\backend\models\Notification;
5 5
 use app\backend\models\OrderChat;
6 6
 use app\components\Helper;
7
-use app\modules\shop\models\Category;
8
-use app\modules\shop\models\CategoryGroup;
9
-use app\modules\shop\models\CategoryGroupRouteTemplates;
10 7
 use app\models\DynamicContent;
11 8
 use app\models\ErrorLog;
12 9
 use app\models\ErrorUrl;
13 10
 use app\models\Form;
14
-use app\modules\image\models\Image;
15 11
 use app\models\Layout;
16 12
 use app\models\Object;
17 13
 use app\models\ObjectPropertyGroup;
18 14
 use app\models\ObjectStaticValues;
19
-use app\modules\shop\models\Order;
20
-use app\modules\shop\models\OrderItem;
21
-use app\modules\shop\models\OrderTransaction;
22
-use app\modules\page\models\Page;
23
-use app\modules\shop\models\PaymentType;
24
-use app\modules\shop\models\Product;
25 15
 use app\models\Property;
26 16
 use app\models\PropertyGroup;
27 17
 use app\models\PropertyHandler;
28 18
 use app\models\PropertyStaticValues;
29 19
 use app\models\Route;
30
-use app\modules\shop\models\ShippingOption;
31 20
 use app\models\Submission;
32 21
 use app\models\SubscribeEmail;
22
+use app\models\View;
23
+use app\models\ViewObject;
24
+use app\modules\image\models\Image;
25
+use app\modules\page\models\Page;
33 26
 use app\modules\review\models\Review;
27
+use app\modules\shop\models\Category;
28
+use app\modules\shop\models\CategoryGroup;
29
+use app\modules\shop\models\CategoryGroupRouteTemplates;
30
+use app\modules\shop\models\Order;
31
+use app\modules\shop\models\OrderItem;
32
+use app\modules\shop\models\OrderTransaction;
33
+use app\modules\shop\models\PaymentType;
34
+use app\modules\shop\models\Product;
35
+use app\modules\shop\models\ShippingOption;
34 36
 use app\modules\user\models\User;
35 37
 use app\modules\user\models\UserService;
36
-use app\models\View;
37
-use app\models\ViewObject;
38 38
 use app\widgets\navigation\models\Navigation;
39 39
 use yii\db\Migration;
40 40
 use yii\helpers\Json;
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/m150531_084444_new_init.php 1 patch
Unused Use Statements   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,5 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
+use Imagine\Image\ManipulatorInterface;
3 4
 use app\backend\models\ApiService;
4 5
 use app\backend\models\BackendMenu;
5 6
 use app\backend\models\Notification;
@@ -41,8 +42,8 @@  discard block
 block discarded – undo
41 42
 use app\modules\core\models\ContentDecorator;
42 43
 use app\modules\core\models\EventHandlers;
43 44
 use app\modules\core\models\Events;
44
-use app\modules\core\models\Extensions;
45 45
 use app\modules\core\models\ExtensionTypes;
46
+use app\modules\core\models\Extensions;
46 47
 use app\modules\data\models\CommercemlGuid;
47 48
 use app\modules\image\models\ErrorImage;
48 49
 use app\modules\image\models\Image;
@@ -93,9 +94,7 @@  discard block
 block discarded – undo
93 94
 use app\modules\user\models\User;
94 95
 use app\modules\user\models\UserService;
95 96
 use app\widgets\navigation\models\Navigation;
96
-use Imagine\Image\ManipulatorInterface;
97 97
 use yii\db\Migration;
98
-use yii\db\Query;
99 98
 use yii\db\Schema;
100 99
 use yii\helpers\Json;
101 100
 
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/Object.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,14 +13,14 @@
 block discarded – undo
13 13
  * @property string $link_slug_category
14 14
  * @property string $link_slug_static_value
15 15
  */
16
+use Yii;
16 17
 use app\modules\data\models\Export;
17 18
 use app\modules\data\models\Import;
18
-use Yii;
19
+use devgroup\TagDependencyHelper\ActiveRecordHelper;
19 20
 use yii\caching\TagDependency;
20 21
 use yii\db\ActiveRecord;
21 22
 use yii\db\Query;
22 23
 use yii\helpers\ArrayHelper;
23
-use devgroup\TagDependencyHelper\ActiveRecordHelper;
24 24
 
25 25
 class Object extends ActiveRecord implements \JsonSerializable
26 26
 {
Please login to merge, or discard this patch.
application/models/PropertyHandler.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,6 +79,7 @@  discard block
 block discarded – undo
79 79
 
80 80
     /**
81 81
      * Возвращает модель по ID с использованием IdentityMap
82
+     * @param integer $id
82 83
      */
83 84
     public static function findById($id)
84 85
     {
@@ -139,7 +140,7 @@  discard block
 block discarded – undo
139 140
     }
140 141
 
141 142
     /**
142
-     * @param $name
143
+     * @param string $name
143 144
      * @return null|int
144 145
      */
145 146
     public static function findByName($name)
Please login to merge, or discard this patch.
application/models/View.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\models;
4 4
 
5
-use app\traits\LoadModel;
6 5
 use Yii;
6
+use app\traits\LoadModel;
7 7
 use yii\caching\TagDependency;
8 8
 use yii\data\ActiveDataProvider;
9 9
 use yii\db\ActiveRecord;
Please login to merge, or discard this patch.
application/models/ViewObject.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -137,6 +137,9 @@
 block discarded – undo
137 137
         return $result;
138 138
     }
139 139
 
140
+    /**
141
+     * @param integer $view_id
142
+     */
140 143
     public static function deleteByViewId($view_id = null)
141 144
     {
142 145
         if (null === $view_id) {
Please login to merge, or discard this patch.
application/modules/config/models/BaseConfigurationModel.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\config\models;
4 4
 
5
-use app\modules\config\helpers\ApplicationConfigWriter;
6 5
 use Yii;
6
+use app\modules\config\helpers\ApplicationConfigWriter;
7 7
 use yii\base\Model;
8 8
 use yii\helpers\StringHelper;
9 9
 
Please login to merge, or discard this patch.