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 — master ( 8c6dcd...f90d5d )
by Alexander
33s
created
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.
application/modules/user/controllers/BackendUserController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -156,7 +156,7 @@
 block discarded – undo
156 156
     * Deletes an existing User model.
157 157
     * If deletion is successful, the browser will be redirected to the 'index' page.
158 158
     * @param integer $id
159
-    * @return mixed
159
+    * @return \yii\web\Response
160 160
     */
161 161
     public function actionDelete($id)
162 162
     {
Please login to merge, or discard this patch.
application/modules/user/controllers/RbacController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -277,7 +277,7 @@
 block discarded – undo
277 277
      * Deletes an existing User model.
278 278
      * If deletion is successful, the browser will be redirected to the 'index' page.
279 279
      * @param integer $id
280
-     * @return mixed
280
+     * @return \yii\web\Response
281 281
      */
282 282
     public function actionDelete($id)
283 283
     {
Please login to merge, or discard this patch.
application/properties/AbstractModel.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,6 +31,9 @@  discard block
 block discarded – undo
31 31
      */
32 32
     private $arrayMode = false;
33 33
 
34
+    /**
35
+     * @param ActiveRecord $ownerModel
36
+     */
34 37
     public function __construct($config = [], $ownerModel = null)
35 38
     {
36 39
         parent::__construct($config);
@@ -52,7 +55,7 @@  discard block
 block discarded – undo
52 55
     }
53 56
 
54 57
     /**
55
-     * @param $name
58
+     * @param string $name
56 59
      */
57 60
     public function setFormName($name)
58 61
     {
Please login to merge, or discard this patch.