| 1 | <?php |
||
| 18 | class ResendForm extends Model |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @var string |
||
| 22 | */ |
||
| 23 | public $email; |
||
| 24 | /** |
||
| 25 | * @var UserQuery |
||
| 26 | */ |
||
| 27 | protected $userQuery; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @param UserQuery $userQuery |
||
| 31 | * @param array $config |
||
| 32 | */ |
||
| 33 | 1 | public function __construct(UserQuery $userQuery, $config = []) |
|
| 38 | |||
| 39 | /** |
||
| 40 | * {@inheritdoc} |
||
| 41 | */ |
||
| 42 | 1 | public function rules() |
|
| 49 | |||
| 50 | /** |
||
| 51 | * {@inheritdoc} |
||
| 52 | */ |
||
| 53 | 1 | public function attributeLabels() |
|
| 59 | } |
||
| 60 |