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.
Test Setup Failed
Push — filters ( 47b347...3c9cff )
by Alexander
109:58 queued 94:21
created
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/Product.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -240,7 +240,7 @@  discard block
 block discarded – undo
240 240
     /**
241 241
      * Returns model instance by ID using per-request Identity Map and cache
242 242
      * @param $id
243
-     * @param int $is_active Return only active
243
+     * @param int $isActive Return only active
244 244
      * @return Product
245 245
      */
246 246
     public static function findById($id, $isActive = 1)
@@ -327,7 +327,7 @@  discard block
 block discarded – undo
327 327
     }
328 328
 
329 329
     /**
330
-     * @return Category|null
330
+     * @return ActiveQuery
331 331
      */
332 332
     public function getCategory()
333 333
     {
@@ -1074,7 +1074,7 @@  discard block
 block discarded – undo
1074 1074
     }
1075 1075
 
1076 1076
     /**
1077
-     * @param int|Category|null $category
1077
+     * @param integer $category
1078 1078
      * @param bool $asMainCategory
1079 1079
      * @return bool
1080 1080
      * @throws \yii\db\Exception
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.