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/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/Filter.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.
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.
protected/models/product/filter/FilterState.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
   }
59 59
 
60 60
   /**
61
-   * @param $offset
61
+   * @param string $offset
62 62
    *
63 63
    * @return null
64 64
    */
Please login to merge, or discard this patch.
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.