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/models/PropertyStaticValues.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
     }
195 195
 
196 196
     /**
197
-     * @param $property_id
197
+     * @param integer $property_id
198 198
      * @param $category_id
199 199
      * @param $properties
200 200
      * @return PropertyStaticValues[]
@@ -333,6 +333,9 @@  discard block
 block discarded – undo
333 333
         return $allSelections;
334 334
     }
335 335
 
336
+    /**
337
+     * @param string $joinCondition
338
+     */
336 339
     private static function initSubQuery($category_id, $joinCondition)
337 340
     {
338 341
         $product = Yii::$container->get(Product::class);
Please login to merge, or discard this patch.
application/modules/core/models/ContentBlock.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -124,7 +124,7 @@
 block discarded – undo
124 124
 
125 125
 
126 126
     /**
127
-     * @return ContentBlockGroup[]
127
+     * @return \yii\db\ActiveQuery
128 128
      */
129 129
     public function getGroup()
130 130
     {
Please login to merge, or discard this patch.
application/modules/image/models/ErrorImage.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -22,6 +22,9 @@  discard block
 block discarded – undo
22 22
     protected $backendLink;
23 23
     protected static $classNames;
24 24
 
25
+    /**
26
+     * @param integer $id
27
+     */
25 28
     protected function getPageLinks($id)
26 29
     {
27 30
         /** @var Page $model */
@@ -46,6 +49,9 @@  discard block
 block discarded – undo
46 49
         }
47 50
     }
48 51
 
52
+    /**
53
+     * @param integer $id
54
+     */
49 55
     protected function getCategoryLinks($id)
50 56
     {
51 57
         $model = Category::findById($id, null);
@@ -72,6 +78,9 @@  discard block
 block discarded – undo
72 78
         }
73 79
     }
74 80
 
81
+    /**
82
+     * @param integer $id
83
+     */
75 84
     protected function getProductLinks($id)
76 85
     {
77 86
         $product = Yii::$container->get(Product::class);
Please login to merge, or discard this patch.
application/modules/image/models/ThumbnailWatermark.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -62,9 +62,9 @@
 block discarded – undo
62 62
 
63 63
     /**
64 64
      * Return thumbnail width watermark or create if not exist
65
-     * @param $thumb Thumbnail
66
-     * @param $water Watermark
67
-     * @return thumbnail
65
+     * @param Thumbnail $thumb Thumbnail
66
+     * @param Watermark $water Watermark
67
+     * @return ThumbnailWatermark
68 68
      */
69 69
     public static function getThumbnailWatermark($thumb, $water)
70 70
     {
Please login to merge, or discard this patch.
application/modules/shop/backend/FilterSetsController.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -316,6 +316,9 @@
 block discarded – undo
316 316
         return $result;
317 317
     }
318 318
 
319
+    /**
320
+     * @param string $className
321
+     */
319 322
     private function invalidateTags($className, $ids)
320 323
     {
321 324
         $tags = [
Please login to merge, or discard this patch.
application/modules/shop/controllers/CabinetController.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -79,6 +79,9 @@  discard block
 block discarded – undo
79 79
         return $this->redirect(Url::previous('__shopCabinetUpdateReturnUrl'));
80 80
     }
81 81
 
82
+    /**
83
+     * @param Customer $customer
84
+     */
82 85
     private function updateCustomer($customer)
83 86
     {
84 87
         if ($customer === null) {
@@ -89,6 +92,9 @@  discard block
 block discarded – undo
89 92
         }
90 93
     }
91 94
 
95
+    /**
96
+     * @param Contragent $contragent
97
+     */
92 98
     private function updateContragent($contragent)
93 99
     {
94 100
         if ($contragent === null) {
Please login to merge, or discard this patch.
application/modules/shop/models/Contragent.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
     }
87 87
 
88 88
     /**
89
-     * @return Order[]|null
89
+     * @return \yii\db\ActiveQuery
90 90
      */
91 91
     public function getOrders()
92 92
     {
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
     }
95 95
 
96 96
     /**
97
-     * @return Customer|null
97
+     * @return \yii\db\ActiveQuery
98 98
      */
99 99
     public function getCustomer()
100 100
     {
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
     }
103 103
 
104 104
     /**
105
-     * @return DeliveryInformation|null
105
+     * @return \yii\db\ActiveQuery
106 106
      */
107 107
     public function getDeliveryInformation()
108 108
     {
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
     /**
129 129
      * @param Customer $customer
130 130
      * @param bool $dummyObject
131
-     * @return Contragent|null
131
+     * @return Contragent
132 132
      */
133 133
     public static function createEmptyContragent(Customer $customer, $dummyObject = true)
134 134
     {
Please login to merge, or discard this patch.
application/modules/shop/models/Customer.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
     }
104 104
 
105 105
     /**
106
-     * @return Order[]|null
106
+     * @return \yii\db\ActiveQuery
107 107
      */
108 108
     public function getOrders()
109 109
     {
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
     }
112 112
 
113 113
     /**
114
-     * @return User|null
114
+     * @return \yii\db\ActiveQuery
115 115
      */
116 116
     public function getUser()
117 117
     {
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
     }
120 120
 
121 121
     /**
122
-     * @return Contragent[]|null
122
+     * @return \yii\db\ActiveQuery
123 123
      */
124 124
     public function getContragents()
125 125
     {
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
     }
128 128
 
129 129
     /**
130
-     * @return Contragent|null
130
+     * @return \yii\db\ActiveQuery
131 131
      */
132 132
     public function getContragent()
133 133
     {
Please login to merge, or discard this patch.
application/modules/shop/models/DeliveryInformation.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
     }
60 60
 
61 61
     /**
62
-     * @return Contragent|null
62
+     * @return \yii\db\ActiveQuery
63 63
      */
64 64
     public function getContragent()
65 65
     {
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
     }
68 68
 
69 69
     /**
70
-     * @return Country|null
70
+     * @return \yii\db\ActiveQuery
71 71
      */
72 72
     public function getCountry()
73 73
     {
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
     }
76 76
 
77 77
     /**
78
-     * @return City|null
78
+     * @return \yii\db\ActiveQuery
79 79
      */
80 80
     public function getCity()
81 81
     {
Please login to merge, or discard this patch.