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 ( 9473d9...a69b27 )
by Alexander
11:37 queued 04:57
created
application/backgroundtasks/models/Task.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
 
159 159
     /**
160 160
      * Users relation
161
-     * @return mixed
161
+     * @return \yii\db\ActiveQuery
162 162
      */
163 163
     public function getUsers()
164 164
     {
@@ -231,7 +231,7 @@  discard block
 block discarded – undo
231 231
 
232 232
     /**
233 233
      * Set status
234
-     * @param $status
234
+     * @param string $status
235 235
      * @return bool
236 236
      */
237 237
     public function setStatus($status)
Please login to merge, or discard this patch.
application/backgroundtasks/traits/NewsletterSenderTrait.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace app\backgroundtasks\traits;
4 4
 
5
-use app\modules\page\models\Page;
5
+use Yii;
6 6
 use app\models\SubscribeEmail;
7
+use app\modules\page\models\Page;
7 8
 use app\properties\HasProperties;
8
-use Yii;
9 9
 
10 10
 trait NewsletterSenderTrait
11 11
 {
Please login to merge, or discard this patch.
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 2 patches
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -109,6 +109,10 @@
 block discarded – undo
109 109
     }
110 110
 
111 111
 
112
+    /**
113
+     * @param string|boolean $path
114
+     * @param string $themeName
115
+     */
112 116
     protected function createStructure($path, $children, $themeName)
113 117
     {
114 118
         foreach ($children as $child) {
Please login to merge, or discard this 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/components/ViewElementsGathener.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -36,6 +36,9 @@  discard block
 block discarded – undo
36 36
         $this->elements[$cacheStackId][$elementType][] = $arguments;
37 37
     }
38 38
 
39
+    /**
40
+     * @param string $elementType
41
+     */
39 42
     public function gather($elementType, $arguments)
40 43
     {
41 44
         if ($this->currentStackId===null) {
@@ -45,6 +48,9 @@  discard block
 block discarded – undo
45 48
         $this->gatherToStack($this->currentStackId, $elementType, $arguments);
46 49
     }
47 50
 
51
+    /**
52
+     * @param string $cacheStackId
53
+     */
48 54
     public function startGathering($cacheStackId, $dependency = null)
49 55
     {
50 56
         $this->currentStackId = $cacheStackId;
@@ -89,6 +95,9 @@  discard block
 block discarded – undo
89 95
         }
90 96
     }
91 97
 
98
+    /**
99
+     * @param string $cacheStackId
100
+     */
92 101
     public function getCachedData($cacheStackId)
93 102
     {
94 103
         Yii::trace('Get cached data: ' . $cacheStackId);
Please login to merge, or discard this patch.
application/extensions/DefaultTheme/models/ThemeActiveWidgets.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
 
76 76
     /**
77 77
      * Relation to ThemeWidgets
78
-     * @return ThemeWidgets
78
+     * @return \yii\db\ActiveQuery
79 79
      */
80 80
     public function getWidget()
81 81
     {
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
 
85 85
     /**
86 86
      * Relation to ThemeWidgets
87
-     * @return ThemeWidgets
87
+     * @return \yii\db\ActiveQuery
88 88
      */
89 89
     public function getPart()
90 90
     {
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace app\extensions\DefaultTheme\models;
4 4
 
5
+use Yii;
5 6
 use app\traits\IdentityMap;
6 7
 use app\traits\SortModels;
7
-use Yii;
8 8
 use \devgroup\TagDependencyHelper\ActiveRecordHelper;
9 9
 use yii\caching\TagDependency;
10 10
 use yii\helpers\ArrayHelper;
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.
application/extensions/DefaultTheme/widgets/Footer/Widget.php 2 patches
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -2,11 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace app\extensions\DefaultTheme\widgets\Footer;
4 4
 
5
-use Yii;
6
-use app\extensions\DefaultTheme\assets\BootstrapHoverDropdown;
7 5
 use app\extensions\DefaultTheme\components\BaseWidget;
8
-use app\modules\shop\models\Order;
9
-use yii\helpers\ArrayHelper;
10 6
 
11 7
 class Widget extends BaseWidget
12 8
 {
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.