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 ( f90d5d...8a908d )
by Ivan
08:16
created
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/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.
application/properties/PropertyHandlers.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
     }
33 33
 
34 34
     /**
35
-     * @param null $id
35
+     * @param integer $id
36 36
      * @return null
37 37
      */
38 38
     static public function getHandlerById($id = null)
Please login to merge, or discard this patch.
application/tests/unit/models/LoginFormTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -58,6 +58,9 @@
 block discarded – undo
58 58
 		});
59 59
 	}
60 60
 
61
+	/**
62
+	 * @param null|User $user
63
+	 */
61 64
 	private function mockUser($user)
62 65
 	{
63 66
 		$loginForm = $this->getMock('app\modules\user\models\LoginForm', ['getUser']);
Please login to merge, or discard this patch.