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/data/components/Import.php 1 patch
Doc Comments   +5 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,6 +31,10 @@  discard block
 block discarded – undo
31 31
     /*
32 32
      * Export method
33 33
      */
34
+
35
+    /**
36
+     * @param string[] $header
37
+     */
34 38
     abstract public function getData($header, $data);
35 39
     /*
36 40
      * Import method
@@ -133,6 +137,7 @@  discard block
 block discarded – undo
133 137
      * @param array $propertiesFields
134 138
      * @param array $row
135 139
      * @param array $titleFields
140
+     * @param integer $columnsCount
136 141
      * @throws \Exception
137 142
      */
138 143
     protected function save($objectId, $object, $objectFields = [], $properties = [], $propertiesFields = [], $row=[], $titleFields=[], $columnsCount = null)
@@ -280,7 +285,6 @@  discard block
 block discarded – undo
280 285
     }
281 286
 
282 287
     /**
283
-     * @param array $exportFields
284 288
      * @return array
285 289
      */
286 290
     public function getAllFields($fields = [])
Please login to merge, or discard this patch.
application/modules/data/controllers/FileController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
     /**
60 60
      * Unified action for import and export
61 61
      * @param $id
62
-     * @param $importMode
62
+     * @param boolean $importMode
63 63
      * @return string|\yii\web\Response
64 64
      * @throws ErrorException
65 65
      */
Please login to merge, or discard this patch.
application/modules/image/models/ThumbnailSize.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -93,6 +93,9 @@
 block discarded – undo
93 93
         return $dataProvider;
94 94
     }
95 95
 
96
+    /**
97
+     * @param string $demand
98
+     */
96 99
     public static function getByDemand($demand)
97 100
     {
98 101
         $sizes = explode('x', $demand);
Please login to merge, or discard this patch.
application/modules/image/models/ThumbnailWatermark.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
 
63 63
     /**
64 64
      * Return thumbnail width watermark or create if not exist
65
-     * @param $thumb Thumbnail
65
+     * @param Thumbnail $thumb Thumbnail
66 66
      * @param $water Watermark
67 67
      * @return thumbnail
68 68
      */
Please login to merge, or discard this patch.
application/modules/review/models/RatingItem.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@
 block discarded – undo
121 121
     }
122 122
 
123 123
     /**
124
-     * @param null $name
124
+     * @param string|null $name
125 125
      * @return array|null|\yii\db\ActiveRecord
126 126
      */
127 127
     public static function getGroupByName($name = null)
Please login to merge, or discard this patch.
application/modules/review/models/Review.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -145,6 +145,7 @@
 block discarded – undo
145 145
     /**
146 146
      * Получает отзывы по конкретной инстанции модели
147 147
      * @var $models \app\modules\review\models\Review[]
148
+     * @param integer $formId
148 149
      * @return array
149 150
      */
150 151
     public static function getForObjectModel($object_model_id, $object_id, $formId, $sort = SORT_ASC)
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/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/properties/handlers/AbstractHandler.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,11 +44,11 @@
 block discarded – undo
44 44
     }
45 45
 
46 46
     /**
47
-     * @param $property
47
+     * @param \app\models\Property $property
48 48
      * @param $model
49 49
      * @param $values
50 50
      * @param $form
51
-     * @param $renderType
51
+     * @param string $renderType
52 52
      * @return string
53 53
      */
54 54
     public function render($property, $model, $values, $form, $renderType)
Please login to merge, or discard this patch.