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 ( c5bb66...d445c4 )
by Alexey
11:04
created
backend/protected/modules/product/models/BProduct.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -253,6 +253,9 @@
 block discarded – undo
253 253
     });
254 254
   }
255 255
 
256
+  /**
257
+   * @param string $key
258
+   */
256 259
   public function getElementByKey($key)
257 260
   {
258 261
     foreach($this->elements as $element)
Please login to merge, or discard this patch.
modules/product/modules/import/components/abstracts/AbstractAggregator.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -45,6 +45,10 @@
 block discarded – undo
45 45
     $this->writer->init();
46 46
   }
47 47
 
48
+  /**
49
+   * @param integer $rowIndex
50
+   * @param string $file
51
+   */
48 52
   public function collect($data, $rowIndex, $file)
49 53
   {
50 54
     $groupIndex = !empty($this->groupByColumn) || $this->groupByColumn === 0 ? $data[$this->groupByColumn] : $this->innerIndexCounter++;
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.
protected/share/helpers/PriceHelper.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -89,8 +89,8 @@  discard block
 block discarded – undo
89 89
 
90 90
   /**
91 91
    * Возвращает процент "экономии"
92
-   * @param $oldPrice
93
-   * @param $price
92
+   * @param integer $oldPrice
93
+   * @param integer $price
94 94
    * @param bool $ceil округлять до целого
95 95
    *
96 96
    * @return float
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
    * Возвращает число процентного соотношения $percent от числа $price
127 127
    *
128 128
    * @param $price число
129
-   * @param $percent процент
129
+   * @param string $percent процент
130 130
    * @param bool $ceil округлять до целого
131 131
    *
132 132
    * @return float число
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
    * Удалает из цены все символы кроме 0-9 и "."
161 161
    * @param $price
162 162
    *
163
-   * @return mixed
163
+   * @return double
164 164
    */
165 165
   public static function clear($price)
166 166
   {
Please login to merge, or discard this patch.
backend/protected/components/BMenu.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
 
88 88
   /**
89 89
    * @param array $modules
90
-   * @param BModule $parent|null
90
+   * @param BModule $parent
91 91
    * @throws CException
92 92
    */
93 93
   private function buildStructure(array $modules, $parent = null)
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
   /**
208 208
    * @param BModule $module
209 209
    *
210
-   * @return bool
210
+   * @return false|null
211 211
    * @throws CHttpException
212 212
    */
213 213
   private function createModulesMenu($module)
@@ -232,7 +232,7 @@  discard block
 block discarded – undo
232 232
    *
233 233
    * @param BModule $module
234 234
    *
235
-   * @return bool
235
+   * @return boolean|null
236 236
    * @throws CHttpException
237 237
    */
238 238
   private function createFakeModulesMenu($module)
Please login to merge, or discard this patch.
protected/extensions/retailcrm/components/lib/ApiClient.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,6 @@
 block discarded – undo
23 23
      *
24 24
      * @param  string $url
25 25
      * @param  string $apiKey
26
-     * @param  string $siteCode
27 26
      * @return mixed
28 27
      */
29 28
     public function __construct($url, $apiKey, $site = null)
Please login to merge, or discard this patch.
protected/extensions/retailcrm/components/lib/Http/Client.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -17,6 +17,9 @@
 block discarded – undo
17 17
     protected $defaultParameters;
18 18
     protected $retry;
19 19
 
20
+    /**
21
+     * @param string $url
22
+     */
20 23
     public function __construct($url, array $defaultParameters = array())
21 24
     {
22 25
         if (false === stripos($url, 'https://')) {
Please login to merge, or discard this patch.