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 ( 8c46d0...abf5c6 )
by
unknown
05:01
created
protected/share/helpers/PriceHelper.php 1 patch
Doc Comments   +3 added lines, -3 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 число
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.
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.