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.
Completed
Push — master ( 9727e1...c0f607 )
by
unknown
06:43
created
protected/share/helpers/StringBuilder.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
   }
60 60
 
61 61
   /**
62
-   * @param $string
62
+   * @param string $string
63 63
    *
64 64
    * @return StringBuilder
65 65
    */
Please login to merge, or discard this patch.
protected/share/helpers/Utils.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
    * Удаляем из строки запроса набор get параметров
150 150
    *
151 151
    * @param       $query
152
-   * @param array $params
152
+   * @param string[] $params
153 153
    *
154 154
    * @return string
155 155
    */
@@ -273,8 +273,8 @@  discard block
 block discarded – undo
273 273
   }
274 274
 
275 275
   /**
276
-   * @param $number
277
-   * @param array|string $titles
276
+   * @param integer $number
277
+   * @param string $titles
278 278
    * @return string
279 279
    */
280 280
   public static function plural($number, $titles = array())
Please login to merge, or discard this patch.
protected/share/SNotification.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
 
89 89
   /**
90 90
    * @param $vars
91
-   * @param $data
91
+   * @param SNotification $data
92 92
    */
93 93
   private function prepareEmail($vars, $data)
94 94
   {
@@ -110,8 +110,8 @@  discard block
 block discarded – undo
110 110
   }
111 111
 
112 112
   /**
113
-   * @param $mailForSend
114
-   * @param $data
113
+   * @param string $mailForSend
114
+   * @param SNotification $data
115 115
    */
116 116
   private function sendEmail($mailForSend, $data)
117 117
   {
Please login to merge, or discard this patch.
protected/share/Statistics.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@
 block discarded – undo
91 91
    * @param integer $n
92 92
    * @param integer $d
93 93
    *
94
-   * @return array
94
+   * @return integer[]
95 95
    */
96 96
   protected function divQr($n, $d)
97 97
   {
Please login to merge, or discard this patch.
protected/tests/unit/build/PrivilegeCheckerTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
   }
45 45
 
46 46
   /**
47
-   * @return array
47
+   * @return string[]
48 48
    */
49 49
   private function getShowGrantsRawOutput()
50 50
   {
Please login to merge, or discard this patch.
protected/tests/unit/models/product/filter/FilterTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -191,6 +191,9 @@
 block discarded – undo
191 191
     $this->filter->apply(new CDbCriteria());
192 192
   }
193 193
 
194
+  /**
195
+   * @param integer $id
196
+   */
194 197
   public function getPatternCheckInCondition($id)
195 198
   {
196 199
     return '/(\(|,| )('.$id.')(\)|,| )/';
Please login to merge, or discard this patch.
protected/components/cli/ConsoleProgressBar.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -270,6 +270,9 @@  discard block
 block discarded – undo
270 270
     }
271 271
   }
272 272
 
273
+  /**
274
+   * @param string $key
275
+   */
273 276
   public function setValueMap($key, $value)
274 277
   {
275 278
     $this->valueMap[$key] = $value;
@@ -442,7 +445,7 @@  discard block
 block discarded – undo
442 445
    *
443 446
    * @param mixed $str
444 447
    *
445
-   * @return void
448
+   * @return string
446 449
    */
447 450
   protected function stripEscapeSequences($str)
448 451
   {
Please login to merge, or discard this patch.
protected/extensions/phpthumb/EPhpThumb.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
     /**
38 38
      * Creates a new EThumbnail object allowing to manipulate the image file provided via $filePath
39 39
      * @param string $filePath the image file path.
40
-     * @return PhpThumb object
40
+     * @return string object
41 41
      */
42 42
     public function create($filePath)
43 43
     {
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
     /**
48 48
      * Creates a new phpThumb object.
49 49
      * @param string $filePath the image file path.
50
-     * @return PhpThumb object
50
+     * @return GdThumb object
51 51
      */
52 52
     protected static function thumbFactory($filePath)
53 53
     {
Please login to merge, or discard this patch.
protected/share/helpers/Arr.php 1 patch
Doc Comments   +14 added lines, -11 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
    * @param mixed $array
13 13
    * @param mixed $key
14 14
    * @param mixed $default
15
-   * @param mixed $strict_default_check
15
+   * @param boolean $strict_default_check
16 16
    *
17 17
    * @return mixed
18 18
    */
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
   /**
120 120
    * Проверка массива на наличие ключей
121 121
    *
122
-   * @param array $search
122
+   * @param integer[] $search
123 123
    * @param mixed $keys
124 124
    *
125 125
    * @return bool
@@ -177,10 +177,10 @@  discard block
 block discarded – undo
177 177
   /**
178 178
    * Проверим, пересекаются ли два массива
179 179
    *
180
-   * @param mixed $arr1
180
+   * @param integer[] $arr1
181 181
    * @param mixed $arr2
182 182
    *
183
-   * @return mixed
183
+   * @return boolean
184 184
    */
185 185
   public static function isIntersec(array $arr1 = array(), array $arr2 = array())
186 186
   {
@@ -231,10 +231,10 @@  discard block
 block discarded – undo
231 231
   /**
232 232
    * @static
233 233
    *
234
-   * @param $glue
235
-   * @param array $array
234
+   * @param string $glue
235
+   * @param string[] $array
236 236
    *
237
-   * @return mixed
237
+   * @return string
238 238
    */
239 239
   public static function implode(array $array, $glue)
240 240
   {
@@ -322,8 +322,8 @@  discard block
 block discarded – undo
322 322
 
323 323
   /**
324 324
    * @param $array
325
-   * @param $itemKey
326
-   * @param $item
325
+   * @param integer $itemKey
326
+   * @param integer $item
327 327
    */
328 328
   public static function push(&$array, $itemKey, $item)
329 329
   {
@@ -361,8 +361,8 @@  discard block
 block discarded – undo
361 361
   }
362 362
 
363 363
   /**
364
-   * @param $array - массив элементы которого нужно отфильтровать
365
-   * @param string|array $keys - ключ или массив ключей элементов $array которые нужно сравнить с $value
364
+   * @param ProductParameterName[] $array - массив элементы которого нужно отфильтровать
365
+   * @param string[] $keys - ключ или массив ключей элементов $array которые нужно сравнить с $value
366 366
    * @param $value
367 367
    * @param $condition - OR или AND условие сравнения нескольких ключей
368 368
    *
@@ -454,6 +454,9 @@  discard block
 block discarded – undo
454 454
     return self::next($revers, $current, $cycle);
455 455
   }
456 456
 
457
+  /**
458
+   * @param integer $countColumns
459
+   */
457 460
   private static function createMatrix($countColumns, $array)
458 461
   {
459 462
     $matrix = array();
Please login to merge, or discard this patch.