add phpdoc and avoid same-named class

This commit is contained in:
bscheshirwork
2018-09-21 11:13:15 +03:00
parent 1e4a001d8a
commit 9637be5778
9 changed files with 56 additions and 2 deletions

View File

@ -15,6 +15,13 @@ use Da\User\Form\RecoveryForm;
use Da\User\Model\Token;
use yii\base\Event;
/**
* Class ResetPasswordEvent
* @package Da\User\Event
*
* @property Token $token
* @property RecoveryForm $form
*/
class ResetPasswordEvent extends Event
{
const EVENT_BEFORE_TOKEN_VALIDATE = 'beforeTokenValidate';