2016-05-16 01:33:19 +03:00
|
|
|
<?php
|
2019-12-13 22:27:13 +03:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2016-05-16 01:33:19 +03:00
|
|
|
namespace common\models\confirmations;
|
|
|
|
|
|
|
|
use common\models\EmailActivation;
|
2019-12-13 22:27:13 +03:00
|
|
|
use common\models\EmailActivationQuery;
|
2016-05-16 01:33:19 +03:00
|
|
|
use yii\helpers\ArrayHelper;
|
|
|
|
|
|
|
|
class NewEmailConfirmation extends EmailActivation {
|
|
|
|
|
2019-12-13 22:27:13 +03:00
|
|
|
public static function find(): EmailActivationQuery {
|
|
|
|
return parent::find()->withType(EmailActivation::TYPE_NEW_EMAIL_CONFIRMATION);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function init(): void {
|
2016-05-16 01:33:19 +03:00
|
|
|
parent::init();
|
|
|
|
$this->type = EmailActivation::TYPE_NEW_EMAIL_CONFIRMATION;
|
|
|
|
}
|
|
|
|
|
2019-12-21 01:23:58 +03:00
|
|
|
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 01:33:19 +03:00
|
|
|
}
|