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/DefaultTheme/widgets/CategoriesList/Widget.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
     /**
16 16
      * Actual run function for all widget classes extending BaseWidget
17 17
      *
18
-     * @return mixed
18
+     * @return string
19 19
      */
20 20
     public function widgetRun()
21 21
     {
Please login to merge, or discard this patch.
application/extensions/DefaultTheme/widgets/Navigation/Widget.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,6 @@
 block discarded – undo
8 8
 
9 9
 namespace app\extensions\DefaultTheme\widgets\Navigation;
10 10
 
11
-use Yii;
12 11
 use app\extensions\DefaultTheme\components\BaseWidget;
13 12
 use yii\helpers\Json;
14 13
 
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
     /**
16 16
      * Actual run function for all widget classes extending BaseWidget
17 17
      *
18
-     * @return mixed
18
+     * @return string
19 19
      */
20 20
     public function widgetRun()
21 21
     {
Please login to merge, or discard this patch.
DefaultTheme/widgets/OneRowHeaderWithCart/ExpandableSearchField.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
     /**
12 12
      * Actual run function for all widget classes extending BaseWidget
13 13
      *
14
-     * @return mixed
14
+     * @return string
15 15
      */
16 16
     public function run()
17 17
     {
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace app\extensions\DefaultTheme\widgets\OneRowHeaderWithCart;
4 4
 
5
-use Yii;
6
-
7 5
 class ExpandableSearchField extends \yii\base\Widget
8 6
 {
9 7
     public $autocomplete = true;
Please login to merge, or discard this patch.
extensions/DefaultTheme/widgets/OneRowHeaderWithCart/views/header.php 1 patch
Unused Use Statements   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,9 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
+use app\modules\shop\models\Wishlist;
3 4
 use yii\helpers\Html;
4 5
 use yii\helpers\Url;
5
-use kartik\icons\Icon;
6
-use app\modules\shop\models\Wishlist;
7 6
 /** @var yii\web\View $this */
8 7
 /**
9 8
  * @var \app\modules\shop\models\Order $order
Please login to merge, or discard this patch.
application/extensions/DefaultTheme/widgets/PagesList/views/pages-list.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,6 @@
 block discarded – undo
7 7
 /** @var string $date_format */
8 8
 /** @var integer $parent_id */
9 9
 /** @var string $header */
10
-use kartik\icons\Icon;
11 10
 use yii\helpers\Url;
12 11
 
13 12
 $sidebarClass = $isInSidebar ? 'sidebar-widget' : '';
Please login to merge, or discard this patch.
application/models/Slide.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 devgroup\TagDependencyHelper\ActiveRecordHelper;
6 5
 use Yii;
6
+use devgroup\TagDependencyHelper\ActiveRecordHelper;
7 7
 use yii\data\ActiveDataProvider;
8 8
 
9 9
 /**
Please login to merge, or discard this patch.
application/modules/config/helpers/ApplicationConfigWriter.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\helpers;
4 4
 
5
-use app;
6 5
 use Yii;
6
+use app;
7 7
 use yii\base\Component;
8 8
 use yii\base\InvalidConfigException;
9 9
 use yii\helpers\ArrayHelper;
Please login to merge, or discard this patch.
application/modules/core/helpers/EventTriggeringHelper.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\helpers;
4 4
 
5
+use Yii;
5 6
 use app\modules\core\assets\EventsAsset;
6 7
 use app\modules\core\events\SpecialEvent;
7 8
 use app\modules\core\models\EventHandlers;
8 9
 use app\modules\core\models\Events;
9
-use Yii;
10 10
 use yii\base\Exception;
11 11
 use yii\helpers\Json;
12 12
 
Please login to merge, or discard this patch.
application/modules/core/models/Events.php 1 patch
Unused Use Statements   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,11 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace app\modules\core\models;
4 4
 
5
+use Yii;
5 6
 use app;
6 7
 use devgroup\TagDependencyHelper\ActiveRecordHelper;
7
-use Yii;
8 8
 use yii\caching\TagDependency;
9
-use yii\helpers\ArrayHelper;
10 9
 
11 10
 /**
12 11
  * This is the model class for table "{{%events}}".
Please login to merge, or discard this patch.