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.
Passed
Push — small_fix_filter ( 71c4d5...e9de62 )
by
unknown
09:28
created
application/modules/seo/models/SitemapXML.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -11,6 +11,9 @@  discard block
 block discarded – undo
11 11
     protected $fileHandler;
12 12
     protected $urlsCount = 0;
13 13
 
14
+    /**
15
+     * @return resource
16
+     */
14 17
     protected function getFileHandler()
15 18
     {
16 19
         if ($this->fileHandler === null) {
@@ -38,12 +41,18 @@  discard block
 block discarded – undo
38 41
         return rename($this->directory . $oldName, $this->directory . $newName);
39 42
     }
40 43
 
44
+    /**
45
+     * @param string $domain
46
+     */
41 47
     public function __construct($directory, $domain)
42 48
     {
43 49
         $this->directory = $directory;
44 50
         $this->domain = $domain;
45 51
     }
46 52
 
53
+    /**
54
+     * @param string $url
55
+     */
47 56
     public function addUrl($url)
48 57
     {
49 58
         // @todo convert "wrong" symbols
Please login to merge, or discard this patch.
application/modules/shop/controllers/BackendYmlController.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
     }
92 92
 
93 93
     /**
94
-     * @return Response
94
+     * @return integer
95 95
      * @throws HttpException
96 96
      */
97 97
     public function actionSavePropertyUnit()
Please login to merge, or discard this patch.
application/modules/shop/models/Category.php 1 patch
Doc Comments   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -239,7 +239,7 @@  discard block
 block discarded – undo
239 239
     /**
240 240
      * Returns model using indentity map and cache
241 241
      * @param int $id
242
-     * @param int|null $isActive
242
+     * @param integer $isActive
243 243
      * @return Category|null
244 244
      */
245 245
     public static function findById($id, $isActive = 1)
@@ -275,6 +275,7 @@  discard block
 block discarded – undo
275 275
     /**
276 276
      * Finds category by slug inside category_group_id
277 277
      * Uses cache and identity_map
278
+     * @param integer $category_group_id
278 279
      */
279 280
     public static function findBySlug($slug, $category_group_id, $parent_id = 0)
280 281
     {
@@ -328,6 +329,7 @@  discard block
 block discarded – undo
328 329
     /**
329 330
      * Ищет по name в рамках category_group_id
330 331
      * Заносит в identity_map
332
+     * @param integer $category_group_id
331 333
      */
332 334
     public static function findByName($name, $category_group_id, $parent_id = 0)
333 335
     {
@@ -415,6 +417,7 @@  discard block
 block discarded – undo
415 417
     /**
416 418
      * Ищет root для группы категорий
417 419
      * Использует identity_map
420
+     * @param integer $id
418 421
      * @return Category|null
419 422
      */
420 423
     public static function findRootForCategoryGroup($id = null)
@@ -477,7 +480,7 @@  discard block
 block discarded – undo
477 480
 
478 481
     /**
479 482
      * @param int $parentId
480
-     * @param int|null $isActive
483
+     * @param integer $isActive
481 484
      * @return Category[]|array
482 485
      */
483 486
     public static function getByParentId($parentId = null, $isActive = 1)
Please login to merge, or discard this patch.
application/modules/shop/models/Customer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -224,7 +224,7 @@
 block discarded – undo
224 224
     }
225 225
 
226 226
     /**
227
-     * @return PropertyGroup|null
227
+     * @return PropertyGroup
228 228
      */
229 229
     public function getPropertyGroup()
230 230
     {
Please login to merge, or discard this patch.
application/modules/shop/models/DeliveryInformation.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
84 84
 
85 85
     /**
86 86
      * @param Contragent $contragent
87
-     * @return DeliveryInformation|null
87
+     * @return DeliveryInformation
88 88
      */
89 89
     public static function createNewDeliveryInformation(Contragent $contragent, $dummyObject = true)
90 90
     {
Please login to merge, or discard this patch.
application/modules/shop/models/Yml.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -168,7 +168,7 @@
 block discarded – undo
168 168
     }
169 169
 
170 170
     /**
171
-     * @return array
171
+     * @return string[]
172 172
      */
173 173
     public function getOfferElements()
174 174
     {
Please login to merge, or discard this patch.
application/modules/user/models/User.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -251,7 +251,7 @@  discard block
 block discarded – undo
251 251
     }
252 252
 
253 253
     /**
254
-     * @return int|string current user ID
254
+     * @return integer current user ID
255 255
      */
256 256
     public function getId()
257 257
     {
@@ -385,7 +385,7 @@  discard block
 block discarded – undo
385 385
     }
386 386
 
387 387
     /**
388
-     * @return mixed|string Display name for the user visual identification
388
+     * @return string Display name for the user visual identification
389 389
      */
390 390
     public function getDisplayName()
391 391
     {
Please login to merge, or discard this patch.
application/properties/AbstractModel.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
     }
53 53
 
54 54
     /**
55
-     * @param $name
55
+     * @param string $name
56 56
      */
57 57
     public function setFormName($name)
58 58
     {
Please login to merge, or discard this patch.
application/properties/DynamicSearchModel.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     private $baseModel = null;
18 18
     private $propertyGroups = null;
19 19
     /**
20
-     * @param \yii\db\ActiveRecord $baseModel
20
+     * @param \app\models\Submission $baseModel
21 21
      * @param array $config
22 22
      */
23 23
     public function __construct($baseModel, $propertyGroups, $config=[])
Please login to merge, or discard this patch.