mirror of
https://github.com/elyby/accounts.git
synced 2024-11-10 07:22:00 +05:30
16 lines
481 B
PHP
16 lines
481 B
PHP
<?php
|
|
return [
|
|
[
|
|
'key' => 'HABGCABHJ1234HBHVD',
|
|
'account_id' => 3,
|
|
'type' => \common\models\EmailActivation::TYPE_REGISTRATION_EMAIL_CONFIRMATION,
|
|
'created_at' => time(),
|
|
],
|
|
[
|
|
'key' => 'H23HBDCHHAG2HGHGHS',
|
|
'account_id' => 4,
|
|
'type' => \common\models\EmailActivation::TYPE_REGISTRATION_EMAIL_CONFIRMATION,
|
|
'created_at' => time() - \api\models\RepeatAccountActivationForm::REPEAT_FREQUENCY - 10,
|
|
],
|
|
];
|