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/share/helpers/PriceHelper.php 1 patch
Doc Comments   +4 added lines, -4 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 число
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
    * Удалает из цены все символы кроме 0-9 и "."
161 161
    * @param $price
162 162
    *
163
-   * @return mixed
163
+   * @return double
164 164
    */
165 165
   public static function clear($price)
166 166
   {
Please login to merge, or discard this patch.
backend/protected/components/BMenu.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
 
88 88
   /**
89 89
    * @param array $modules
90
-   * @param BModule $parent|null
90
+   * @param BModule $parent
91 91
    * @throws CException
92 92
    */
93 93
   private function buildStructure(array $modules, $parent = null)
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
   /**
208 208
    * @param BModule $module
209 209
    *
210
-   * @return bool
210
+   * @return false|null
211 211
    * @throws CHttpException
212 212
    */
213 213
   private function createModulesMenu($module)
@@ -232,7 +232,7 @@  discard block
 block discarded – undo
232 232
    *
233 233
    * @param BModule $module
234 234
    *
235
-   * @return bool
235
+   * @return boolean|null
236 236
    * @throws CHttpException
237 237
    */
238 238
   private function createFakeModulesMenu($module)
Please login to merge, or discard this patch.
protected/extensions/retailcrm/components/lib/ApiClient.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,6 @@
 block discarded – undo
23 23
      *
24 24
      * @param  string $url
25 25
      * @param  string $apiKey
26
-     * @param  string $siteCode
27 26
      * @return mixed
28 27
      */
29 28
     public function __construct($url, $apiKey, $site = null)
Please login to merge, or discard this patch.
protected/extensions/retailcrm/components/lib/Http/Client.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -17,6 +17,9 @@
 block discarded – undo
17 17
     protected $defaultParameters;
18 18
     protected $retry;
19 19
 
20
+    /**
21
+     * @param string $url
22
+     */
20 23
     public function __construct($url, array $defaultParameters = array())
21 24
     {
22 25
         if (false === stripos($url, 'https://')) {
Please login to merge, or discard this patch.
protected/extensions/retailcrm/components/RetailCrmDataManager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@
 block discarded – undo
86 86
   /**
87 87
    * @param FActiveRecord $model
88 88
    * @param $id
89
-   * @param $url
89
+   * @param string $url
90 90
    *
91 91
    * @throws ModelValidateException
92 92
    */
Please login to merge, or discard this patch.
protected/extensions/retailcrm/RetailCrm.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -304,7 +304,7 @@
 block discarded – undo
304 304
 
305 305
   /**
306 306
    * @param array $data
307
-   * @param CActiveRecord $model
307
+   * @param Callback $model
308 308
    *
309 309
    * @return null|string $retailCrmId
310 310
    */
Please login to merge, or discard this patch.