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/behaviors/spamchecker/SpamCheckable.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -7,5 +7,9 @@
 block discarded – undo
7 7
 interface SpamCheckable
8 8
 {
9 9
     public function check();
10
+
11
+    /**
12
+     * @return string
13
+     */
10 14
     public function getType();
11 15
 }
12 16
\ No newline at end of file
Please login to merge, or discard this patch.
application/components/ExtensionModule.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
      * Installs module
32 32
      * @param bool $applyAppMigrations
33 33
      * @param bool $updateComposer
34
-     * @return mixed
34
+     * @return boolean
35 35
      */
36 36
     public static function installModule($applyAppMigrations = true, $updateComposer = true)
37 37
     {
Please login to merge, or discard this patch.
application/extensions/DefaultTheme/components/BaseWidget.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -151,6 +151,7 @@
 block discarded – undo
151 151
 
152 152
     /**
153 153
      * @inheritdoc
154
+     * @param string $view
154 155
      */
155 156
     public function render($view, $params = [])
156 157
     {
Please login to merge, or discard this patch.
application/extensions/demo/migrations/m150605_094805_demo_data.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -31,6 +31,9 @@
 block discarded – undo
31 31
             : $name;
32 32
     }
33 33
 
34
+    /**
35
+     * @param string $name
36
+     */
34 37
     protected function saveEav($id, $groupId, $name, $value)
35 38
     {
36 39
         $key = $this->getKey($name);
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/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/core/helpers/ContentBlockHelper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -291,7 +291,7 @@
 block discarded – undo
291 291
      * @param string $key ContentBlock key
292 292
      * @param array $params . Array of params to be replaced while render
293 293
      * @param yii\base\Model $model . Caller model instance to use in caching
294
-     * @return mixed
294
+     * @return string
295 295
      */
296 296
     public static function getChunk($key, $params = [], yii\base\Model $model = null)
297 297
     {
Please login to merge, or discard this patch.
application/modules/core/models/ConfigConfigurationModel.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -144,7 +144,7 @@
 block discarded – undo
144 144
     }
145 145
 
146 146
     /**
147
-     * @return array
147
+     * @return string[]
148 148
      */
149 149
     public function attributeLabels()
150 150
     {
Please login to merge, or discard this patch.
application/modules/data/components/AbstractImportCsv.php 1 patch
Doc Comments   +11 added lines patch added patch discarded remove patch
@@ -12,8 +12,19 @@
 block discarded – undo
12 12
 
13 13
 abstract class AbstractImportCsv extends Import
14 14
 {
15
+    /**
16
+     * @param resource $handle
17
+     */
15 18
     abstract protected function getCsv($handle);
19
+
20
+    /**
21
+     * @param resource $handle
22
+     */
16 23
     abstract protected function putCsv($handle, $fields);
24
+
25
+    /**
26
+     * @param resource $handle
27
+     */
17 28
     abstract protected function putHeader($handle, $fields);
18 29
 
19 30
     public function setData()
Please login to merge, or discard this patch.