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
Pull Request — master (#392)
by
unknown
12:47
created
application/modules/shop/models/Category.php 1 patch
Doc Comments   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
 
120 120
     /**
121 121
      * Return delete modes list
122
-     * @return array
122
+     * @return string[]
123 123
      */
124 124
     public static function deleteModesList()
125 125
     {
@@ -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/Order.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -252,7 +252,7 @@  discard block
 block discarded – undo
252 252
     }
253 253
 
254 254
     /**
255
-     * @return Customer|null
255
+     * @return \yii\db\ActiveQuery
256 256
      */
257 257
     public function getCustomer()
258 258
     {
@@ -295,7 +295,7 @@  discard block
 block discarded – undo
295 295
     }
296 296
 
297 297
     /**
298
-     * @return OrderDeliveryInformation|null
298
+     * @return \yii\db\ActiveQuery
299 299
      */
300 300
     public function getOrderDeliveryInformation()
301 301
     {
Please login to merge, or discard this patch.
application/modules/shop/models/OrderDeliveryInformation.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
     }
98 98
 
99 99
     /**
100
-     * @return Order|null
100
+     * @return \yii\db\ActiveQuery
101 101
      */
102 102
     public function getOrder()
103 103
     {
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
     }
106 106
 
107 107
     /**
108
-     * @return ShippingOption|null
108
+     * @return \yii\db\ActiveQuery
109 109
      */
110 110
     public function getShippingOption()
111 111
     {
Please login to merge, or discard this patch.
application/modules/shop/models/OrderItem.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
     }
134 134
 
135 135
     /**
136
-     * @return Product|null
136
+     * @return \yii\db\ActiveQuery
137 137
      */
138 138
     public function getProduct()
139 139
     {
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
     }
142 142
 
143 143
     /**
144
-     * @return Addon|null
144
+     * @return \yii\db\ActiveQuery
145 145
      */
146 146
     public function getAddon()
147 147
     {
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
     }
150 150
 
151 151
     /**
152
-     * @return Order|null
152
+     * @return \yii\db\ActiveQuery
153 153
      */
154 154
     public function getOrder()
155 155
     {
Please login to merge, or discard this patch.
application/modules/shop/models/OrderStage.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
     }
131 131
 
132 132
     /**
133
-     * @return OrderStageLeaf[]
133
+     * @return \yii\db\ActiveQuery
134 134
      */
135 135
     public function getNextLeafs()
136 136
     {
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
     }
140 140
 
141 141
     /**
142
-     * @return OrderStageLeaf[]
142
+     * @return \yii\db\ActiveQuery
143 143
      */
144 144
     public function getPrevLeafs()
145 145
     {
Please login to merge, or discard this patch.
application/modules/shop/models/OrderStageLeaf.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
     }
96 96
 
97 97
     /**
98
-     * @return OrderStage|null
98
+     * @return \yii\db\ActiveQuery
99 99
      */
100 100
     public function getStageFrom()
101 101
     {
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
     }
104 104
 
105 105
     /**
106
-     * @return OrderStage|null
106
+     * @return \yii\db\ActiveQuery
107 107
      */
108 108
     public function getStageTo()
109 109
     {
Please login to merge, or discard this patch.
application/modules/shop/models/OrderTransaction.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
     }
84 84
 
85 85
     /**
86
-     * @return Order
86
+     * @return \yii\db\ActiveQuery
87 87
      */
88 88
     public function getOrder()
89 89
     {
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
     }
92 92
 
93 93
     /**
94
-     * @return PaymentType|null
94
+     * @return \yii\db\ActiveQuery
95 95
      */
96 96
     public function getPaymentType()
97 97
     {
Please login to merge, or discard this patch.
application/modules/shop/models/ShippingDiscount.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
 {
17 17
     /**
18 18
      * getShippingOption
19
-     * @return ShippingOption
19
+     * @return \yii\db\ActiveQuery
20 20
      */
21 21
     public function getShippingOption()
22 22
     {
Please login to merge, or discard this patch.
application/modules/shop/models/SpecialPriceObject.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
-     * @return SpecialPriceList|null
55
+     * @return \yii\db\ActiveQuery
56 56
      */
57 57
     public function getSpecialPriceList()
58 58
     {
Please login to merge, or discard this patch.