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 ( eb5207...50744b )
by
unknown
06:53
created
protected/extensions/upload/models/UploadModel.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -26,6 +26,9 @@
 block discarded – undo
26 26
 
27 27
   private $db;
28 28
 
29
+  /**
30
+   * @param string $table
31
+   */
29 32
   public function __construct($table = null)
30 33
   {
31 34
     $this->db        = Yii::app()->db;
Please login to merge, or discard this patch.
protected/extensions/yii-debug-toolbar/YiiDebug.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,6 @@
 block discarded – undo
32 32
 
33 33
     /**
34 34
      * Writes a trace dump.
35
-     * @param string $msg message to be logged
36 35
      */
37 36
     public static function trace($message)
38 37
     {
Please login to merge, or discard this patch.
protected/extensions/yii-debug-toolbar/YiiDebugToolbarRoute.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -215,9 +215,9 @@
 block discarded – undo
215 215
     /**
216 216
      * Check if an IP matches a CIDR mask.
217 217
      *
218
-     * @param integer|string $ip IP to check.
219
-     * @param integer|string $matchIp Radical of the mask (e.g. 192.168.0.0).
218
+     * @param string $ip IP to check.
220 219
      * @param integer $maskBits Size of the mask (e.g. 24).
220
+     * @param string $maskIp
221 221
      */
222 222
     protected static function matchIpMask($ip, $maskIp, $maskBits)
223 223
     {
Please login to merge, or discard this patch.
protected/models/MenuBuilder.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -150,6 +150,9 @@  discard block
 block discarded – undo
150 150
     });
151 151
   }
152 152
 
153
+  /**
154
+   * @param string $method
155
+   */
153 156
   private function getKey($method, $args)
154 157
   {
155 158
     return $method.crc32(serialize($args));
@@ -166,7 +169,7 @@  discard block
 block discarded – undo
166 169
   }
167 170
 
168 171
   /**
169
-   * @param $key
172
+   * @param string $key
170 173
    *
171 174
    * @return mixed
172 175
    */
Please login to merge, or discard this patch.
protected/models/order/Order.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -182,7 +182,7 @@
 block discarded – undo
182 182
 
183 183
   /**
184 184
    * @param $item
185
-   * @param $orderProduct
185
+   * @param FActiveRecord $orderProduct
186 186
    *
187 187
    * @throws CHttpException
188 188
    */
Please login to merge, or discard this patch.
protected/models/order/paymentSystem/platron/PG_Signature.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -66,6 +66,11 @@
 block discarded – undo
66 66
 	}
67 67
 
68 68
 
69
+	/**
70
+	 * @param string $strSecretKey
71
+	 *
72
+	 * @return string
73
+	 */
69 74
 	private static function makeSigStr ( $strScriptName, $arrParams, $strSecretKey ) {
70 75
 		unset($arrParams['pg_sig']);
71 76
 
Please login to merge, or discard this patch.
protected/models/order/paymentSystem/platron/PlatronSystem.php 1 patch
Doc Comments   +11 added lines, -5 removed lines patch added patch discarded remove patch
@@ -291,6 +291,9 @@  discard block
 block discarded – undo
291 291
     return $data['pg_failure_description'];
292 292
   }
293 293
 
294
+  /**
295
+   * @param string $url
296
+   */
294 297
   protected function initPayment($url)
295 298
   {
296 299
     $request = array();
@@ -377,6 +380,9 @@  discard block
 block discarded – undo
377 380
     return $this->createUrl('payment/capture');
378 381
   }
379 382
 
383
+  /**
384
+   * @param string $route
385
+   */
380 386
   protected function createUrl($route)
381 387
   {
382 388
     return isset($this->testModeHost) ? $this->testModeHost.$route.'/' : Yii::app()->controller->createAbsoluteUrl($route);
@@ -393,7 +399,7 @@  discard block
 block discarded – undo
393 399
   /**
394 400
    * Получаем данные запроса в зависимости от его типа
395 401
    *
396
-   * @param $method
402
+   * @param string $method
397 403
    *
398 404
    * @return array
399 405
    */
@@ -413,7 +419,7 @@  discard block
 block discarded – undo
413 419
 
414 420
   /**
415 421
    * Идентификатор выбранной платежной системы
416
-   * @return null
422
+   * @return string
417 423
    */
418 424
   protected function getPaymentSystem()
419 425
   {
@@ -444,7 +450,7 @@  discard block
 block discarded – undo
444 450
    * формируем подпись для переданных данных и скрипта их обработки
445 451
    *
446 452
    * @param array $request
447
-   * @param null $script
453
+   * @param string $script
448 454
    *
449 455
    * @return string
450 456
    */
@@ -467,7 +473,7 @@  discard block
 block discarded – undo
467 473
    * Проверка подписи данных, полученных от платежной системы
468 474
    *
469 475
    * @param array $request
470
-   * @param null $scriptName
476
+   * @param string $scriptName
471 477
    *
472 478
    * @throws CException
473 479
    */
@@ -540,7 +546,7 @@  discard block
 block discarded – undo
540 546
   }
541 547
 
542 548
   /**
543
-   * @param $xml
549
+   * @param SimpleXMLElement $xml
544 550
    *
545 551
    * @return array
546 552
    */
Please login to merge, or discard this patch.
protected/models/product/filter/FilterElement.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,6 +54,9 @@  discard block
 block discarded – undo
54 54
 
55 55
   }
56 56
 
57
+  /**
58
+   * @param Filter $parent
59
+   */
57 60
   public function setParent($parent)
58 61
   {
59 62
     $this->parent = $parent;
@@ -82,7 +85,7 @@  discard block
 block discarded – undo
82 85
   }
83 86
 
84 87
   /**
85
-  * @param $itemId
88
+  * @param integer $itemId
86 89
   *
87 90
   * @return bool
88 91
   */
Please login to merge, or discard this patch.
protected/models/product/filter/FilterRender.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -15,6 +15,9 @@
 block discarded – undo
15 15
    */
16 16
   protected $parent;
17 17
 
18
+  /**
19
+   * @param Filter $parent
20
+   */
18 21
   public function __construct($parent)
19 22
   {
20 23
     $this->parent = $parent;
Please login to merge, or discard this patch.