mirror of
https://github.com/elyby/accounts.git
synced 2024-11-01 00:13:06 +05:30
14 lines
279 B
PHP
14 lines
279 B
PHP
|
<?php
|
||
|
namespace common\models\confirmations;
|
||
|
|
||
|
use common\models\EmailActivation;
|
||
|
|
||
|
class RegistrationConfirmation extends EmailActivation {
|
||
|
|
||
|
public function init() {
|
||
|
parent::init();
|
||
|
$this->type = EmailActivation::TYPE_REGISTRATION_EMAIL_CONFIRMATION;
|
||
|
}
|
||
|
|
||
|
}
|