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 ( 562a2f...39854f )
by Alexey
09:38
created
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.
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/modules/product/modules/import/components/ImportHelper.php 1 patch
Doc Comments   +8 added lines, -5 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
   }
31 31
 
32 32
   /**
33
-   * @param $folder
33
+   * @param string $folder
34 34
    * @param array $extensions
35 35
    *
36 36
    * @return array
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
   /**
74 74
    * Преобразует индекс колонки exсel в номер столбца в 1 - A, 2 - B
75 75
    *
76
-   * @param $number
76
+   * @param double $number
77 77
    *
78 78
    * @return string
79 79
    */
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
    * Преобразует дивпазон индексов колонок exсel в массив
98 98
    * например 'a-c' в array('A', 'B', 'C');
99 99
    *
100
-   * @param $string
100
+   * @param string $string
101 101
    *
102 102
    * @return array
103 103
    */
@@ -121,6 +121,9 @@  discard block
 block discarded – undo
121 121
     return $array;
122 122
   }
123 123
 
124
+  /**
125
+   * @param string $className
126
+   */
124 127
   public static function getModelWithoutBehaviors($className, $scenario = null)
125 128
   {
126 129
     /**
@@ -157,7 +160,7 @@  discard block
 block discarded – undo
157 160
   /**
158 161
    * Оборачивает путь в слеши, исключаея дублирование
159 162
    *
160
-   * @param $path
163
+   * @param string $path
161 164
    * @param string $wrapper
162 165
    *
163 166
    * @return string
@@ -170,7 +173,7 @@  discard block
 block discarded – undo
170 173
   /**
171 174
    * Оборачивает начало путь в слеш, исключаея дублирование
172 175
    *
173
-   * @param $path
176
+   * @param string $path
174 177
    * @param string $wrapper
175 178
    * @param bool $clearEnd
176 179
    *
Please login to merge, or discard this patch.
protected/modules/product/modules/import/components/ImportProductWriter.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -176,6 +176,9 @@  discard block
 block discarded – undo
176 176
     $this->successWriteProductsAmount++;
177 177
   }
178 178
 
179
+  /**
180
+   * @param BProduct $product
181
+   */
179 182
   protected function prepareAssignmentAndGetSectionModel(&$product, array $item)
180 183
   {
181 184
     $sectionModel = null;
@@ -449,6 +452,9 @@  discard block
 block discarded – undo
449 452
     }
450 453
   }
451 454
 
455
+  /**
456
+   * @param string $paramId
457
+   */
452 458
   private function getVariantId($paramId, $name)
453 459
   {
454 460
     if( !$variant = Arr::get($this->parameterVariantsCache, $paramId.$name, BProductParamVariant::model()->findByAttributes(array('param_id' => $paramId, 'name' => $name))) )
@@ -480,6 +486,9 @@  discard block
 block discarded – undo
480 486
     return $variant->id;
481 487
   }
482 488
 
489
+  /**
490
+   * @param string $url
491
+   */
483 492
   protected function createUniqueUrl($url)
484 493
   {
485 494
     if( is_null($this->urlCache) )
Please login to merge, or discard this patch.
protected/modules/product/modules/import/components/ProductAggregator.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -48,6 +48,9 @@
 block discarded – undo
48 48
     $this->_label = $value;
49 49
   }
50 50
 
51
+  /**
52
+   * @return string
53
+   */
51 54
   public function getLayout()
52 55
   {
53 56
     return $this->layout ? $this->layout : $this->getElementsLayout($this->parent);
Please login to merge, or discard this patch.
protected/components/cli/ConsoleFileLogger.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -14,6 +14,9 @@
 block discarded – undo
14 14
    */
15 15
   private $logger;
16 16
 
17
+  /**
18
+   * @param string $fileName
19
+   */
17 20
   public function __construct($fileName)
18 21
   {
19 22
     $this->logger = new CLogger();
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.