2016-05-16 04:03:19 +05:30
|
|
|
<?php
|
2019-12-14 00:57:13 +05:30
|
|
|
declare(strict_types=1);
|
|
|
|
|
2016-05-16 04:03:19 +05:30
|
|
|
namespace common\models\confirmations;
|
|
|
|
|
|
|
|
use common\models\EmailActivation;
|
2019-12-14 00:57:13 +05:30
|
|
|
use common\models\EmailActivationQuery;
|
2016-05-16 04:03:19 +05:30
|
|
|
use yii\helpers\ArrayHelper;
|
|
|
|
|
|
|
|
class NewEmailConfirmation extends EmailActivation {
|
|
|
|
|
2019-12-14 00:57:13 +05:30
|
|
|
public static function find(): EmailActivationQuery {
|
|
|
|
return parent::find()->withType(EmailActivation::TYPE_NEW_EMAIL_CONFIRMATION);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function init(): void {
|
2016-05-16 04:03:19 +05:30
|
|
|
parent::init();
|
|
|
|
$this->type = EmailActivation::TYPE_NEW_EMAIL_CONFIRMATION;
|
|
|
|
}
|
|
|
|
|
2019-12-21 03:53:58 +05:30
|
|
|
public function getNewEmail(): string {
|
|
|
|
return $this->data['newEmail'];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setNewEmail(string $newEmail): void {
|
|
|
|
$this->data = ArrayHelper::merge($this->data ?? [], [
|
|
|
|
'newEmail' => $newEmail,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2016-05-16 04:03:19 +05:30
|
|
|
}
|