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 ( 4e3b80...57ffd6 )
by Alexey
08:08
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.
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.