Completed
Push — master ( e64df6...79acce )
by vistart
02:41
created
security/PasswordHistory.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -83,6 +83,9 @@
 block discarded – undo
83 83
         $this->{$this->passwordHashAttribute} = Yii::$app->security->generatePasswordHash($password);
84 84
     }
85 85
     
86
+    /**
87
+     * @param string $password
88
+     */
86 89
     protected static function judgePasswordHash($password)
87 90
     {
88 91
         return strpos($password, '$2y$') !== false;
Please login to merge, or discard this patch.
console/controllers/UserController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
     
107 107
     /**
108 108
      * Show User Information.
109
-     * @param User|string|integer $user
109
+     * @param User $user
110 110
      * @param boolean $guid
111 111
      * @param boolean $passHash
112 112
      * @param boolean $accessToken
Please login to merge, or discard this patch.