Skip to content

Commit

Permalink
release version 2.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
cebe committed Apr 28, 2016
1 parent b8ce9c1 commit f7aff6b
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 5 deletions.
1 change: 1 addition & 0 deletions common/models/User.php
Expand Up @@ -26,6 +26,7 @@ class User extends ActiveRecord implements IdentityInterface
const STATUS_DELETED = 0;
const STATUS_ACTIVE = 10;


/**
* @inheritdoc
*/
Expand Down
2 changes: 1 addition & 1 deletion common/widgets/Alert.php
Expand Up @@ -41,12 +41,12 @@ class Alert extends \yii\bootstrap\Widget
'info' => 'alert-info',
'warning' => 'alert-warning'
];

/**
* @var array the options for rendering the close button tag.
*/
public $closeButton = [];


public function init()
{
parent::init();
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -12,7 +12,7 @@
"irc": "irc://irc.freenode.net/yii",
"source": "https://github.com/yiisoft/yii2"
},
"minimum-stability": "dev",
"minimum-stability": "stable",
"require": {
"php": ">=5.4.0",
"yiisoft/yii2": ">=2.0.6",
Expand Down
3 changes: 2 additions & 1 deletion frontend/models/ContactForm.php
Expand Up @@ -16,6 +16,7 @@ class ContactForm extends Model
public $body;
public $verifyCode;


/**
* @inheritdoc
*/
Expand Down Expand Up @@ -44,7 +45,7 @@ public function attributeLabels()
/**
* 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 email was sent
*/
public function sendEmail($email)
Expand Down
1 change: 1 addition & 0 deletions frontend/models/PasswordResetRequestForm.php
Expand Up @@ -12,6 +12,7 @@ class PasswordResetRequestForm extends Model
{
public $email;


/**
* @inheritdoc
*/
Expand Down
4 changes: 2 additions & 2 deletions frontend/models/ResetPasswordForm.php
Expand Up @@ -21,8 +21,8 @@ class ResetPasswordForm extends Model
/**
* Creates a form model given a token.
*
* @param string $token
* @param array $config name-value pairs that will be used to initialize the object properties
* @param string $token
* @param array $config name-value pairs that will be used to initialize the object properties
* @throws \yii\base\InvalidParamException if token is empty or not valid
*/
public function __construct($token, $config = [])
Expand Down
1 change: 1 addition & 0 deletions frontend/models/SignupForm.php
Expand Up @@ -13,6 +13,7 @@ class SignupForm extends Model
public $email;
public $password;


/**
* @inheritdoc
*/
Expand Down

0 comments on commit f7aff6b

Please sign in to comment.