release version 2.0.10
This commit is contained in:
parent
3971d0bb3a
commit
fd3391bbcd
@ -12,7 +12,7 @@
|
|||||||
"irc": "irc://irc.freenode.net/yii",
|
"irc": "irc://irc.freenode.net/yii",
|
||||||
"source": "https://github.com/yiisoft/yii2"
|
"source": "https://github.com/yiisoft/yii2"
|
||||||
},
|
},
|
||||||
"minimum-stability": "dev",
|
"minimum-stability": "stable",
|
||||||
"require": {
|
"require": {
|
||||||
"php": ">=5.4.0",
|
"php": ">=5.4.0",
|
||||||
"yiisoft/yii2": "~2.0.5",
|
"yiisoft/yii2": "~2.0.5",
|
||||||
|
@ -45,7 +45,7 @@ class ContactForm extends Model
|
|||||||
/**
|
/**
|
||||||
* Sends an email to the specified email address using the information collected by this model.
|
* Sends an email to the specified email address using the information collected by this model.
|
||||||
* @param string $email the target email address
|
* @param string $email the target email address
|
||||||
* @return boolean whether the model passes validation
|
* @return bool whether the model passes validation
|
||||||
*/
|
*/
|
||||||
public function contact($email)
|
public function contact($email)
|
||||||
{
|
{
|
||||||
|
@ -55,7 +55,7 @@ class LoginForm extends Model
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Logs in a user using the provided username and password.
|
* Logs in a user using the provided username and password.
|
||||||
* @return boolean whether the user is logged in successfully
|
* @return bool whether the user is logged in successfully
|
||||||
*/
|
*/
|
||||||
public function login()
|
public function login()
|
||||||
{
|
{
|
||||||
|
@ -95,7 +95,7 @@ class User extends \yii\base\Object implements \yii\web\IdentityInterface
|
|||||||
* Validates password
|
* Validates password
|
||||||
*
|
*
|
||||||
* @param string $password password to validate
|
* @param string $password password to validate
|
||||||
* @return boolean if password provided is valid for current user
|
* @return bool if password provided is valid for current user
|
||||||
*/
|
*/
|
||||||
public function validatePassword($password)
|
public function validatePassword($password)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user