Completed
Push — master ( f58c14...cabe51 )
by Andrey
07:14
created
behaviors/LoginAttemptBehavior.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace app\behaviors;
4 4
 
5
-use Yii;
6 5
 use yii\base\{Model, Behavior};
7 6
 use app\models\LoginAttempt;
8 7
 
Please login to merge, or discard this patch.
models/ArticleSearch.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
      * @param array $params
54 54
      *
55
-     * @return ActiveDataProvider
55
+     * @return \yii\data\ActiveDataProvider
56 56
      */
57 57
     public function search($params)
58 58
     {
Please login to merge, or discard this patch.
models/User.php 1 patch
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -227,7 +227,7 @@  discard block
 block discarded – undo
227 227
     /**
228 228
      * Finds an identity by the given ID.
229 229
      *
230
-     * @param string|int $id the ID to be looked for
230
+     * @param integer $id the ID to be looked for
231 231
      *
232 232
      * @return IdentityInterface the identity object that matches the given ID.
233 233
      * Null should be returned if such an identity cannot be found
@@ -241,7 +241,7 @@  discard block
 block discarded – undo
241 241
     /**
242 242
      * Finds an identity by the given token.
243 243
      *
244
-     * @param mixed $token the token to be looked for
244
+     * @param string $token the token to be looked for
245 245
      *
246 246
      * @param mixed $type  the type of the token. The value of this parameter depends on the
247 247
      *                     implementation. For example, [[\yii\filters\auth\HttpBearerAuth]] will
@@ -377,6 +377,7 @@  discard block
 block discarded – undo
377 377
      * Set hashed password.
378 378
      *
379 379
      * @param string $password.
380
+     * @param string $password
380 381
      *
381 382
      * @return $this
382 383
      */
Please login to merge, or discard this patch.
models/UserValidate.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
     /**
184 184
      * List if attributes.
185 185
      *
186
-     * @return array
186
+     * @return string[]
187 187
      */
188 188
     public function attributes()
189 189
     {
@@ -284,7 +284,7 @@  discard block
 block discarded – undo
284 284
     /**
285 285
      * List of profile assigned roles.
286 286
      *
287
-     * @return string[]
287
+     * @return integer[]
288 288
      */
289 289
     public function getRoles()
290 290
     {
Please login to merge, or discard this patch.
traits/ThumbnailTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      *
25 25
      * @param array  $options
26 26
      *
27
-     * @return mixed
27
+     * @return null|string
28 28
      */
29 29
     public function getDefaultThumbImage(array $options = [])
30 30
     {
Please login to merge, or discard this patch.
ckfinder/core/connector/php/vendor/aws/aws-sdk-php/src/Api/ApiProvider.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -218,6 +218,7 @@
 block discarded – undo
218 218
 
219 219
     /**
220 220
      * Build the versions list for the specified service by globbing the dir.
221
+     * @param string $service
221 222
      */
222 223
     private function buildVersionsList($service)
223 224
     {
Please login to merge, or discard this patch.
core/connector/php/vendor/aws/aws-sdk-php/src/Api/Parser/XmlParser.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -17,6 +17,9 @@  discard block
 block discarded – undo
17 17
         return $this->dispatch($shape, $value);
18 18
     }
19 19
 
20
+    /**
21
+     * @param Shape $shape
22
+     */
20 23
     private function dispatch($shape, \SimpleXMLElement $value)
21 24
     {
22 25
         static $methods = [
@@ -56,6 +59,9 @@  discard block
 block discarded – undo
56 59
         return $target;
57 60
     }
58 61
 
62
+    /**
63
+     * @param integer $name
64
+     */
59 65
     private function memberKey(Shape $shape, $name)
60 66
     {
61 67
         if (null !== $shape['locationName']) {
Please login to merge, or discard this patch.
php/vendor/aws/aws-sdk-php/src/Api/Serializer/QueryParamBuilder.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -48,6 +48,9 @@  discard block
 block discarded – undo
48 48
         return $query;
49 49
     }
50 50
 
51
+    /**
52
+     * @param string $prefix
53
+     */
51 54
     protected function format(Shape $shape, $value, $prefix, array &$query)
52 55
     {
53 56
         $type = 'format_' . $shape['type'];
@@ -58,6 +61,9 @@  discard block
 block discarded – undo
58 61
         }
59 62
     }
60 63
 
64
+    /**
65
+     * @param string $prefix
66
+     */
61 67
     protected function format_structure(
62 68
         StructureShape $shape,
63 69
         array $value,
Please login to merge, or discard this patch.
connector/php/vendor/aws/aws-sdk-php/src/Api/Serializer/QuerySerializer.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -16,6 +16,9 @@
 block discarded – undo
16 16
     private $api;
17 17
     private $paramBuilder;
18 18
 
19
+    /**
20
+     * @param string $endpoint
21
+     */
19 22
     public function __construct(
20 23
         Service $api,
21 24
         $endpoint,
Please login to merge, or discard this patch.