2016-01-21 02:44:29 +05:30
|
|
|
<?php
|
|
|
|
return [
|
2016-05-11 01:10:06 +05:30
|
|
|
'freshRegistrationConfirmation' => [
|
2016-01-21 02:44:29 +05:30
|
|
|
'key' => 'HABGCABHJ1234HBHVD',
|
|
|
|
'account_id' => 3,
|
|
|
|
'type' => \common\models\EmailActivation::TYPE_REGISTRATION_EMAIL_CONFIRMATION,
|
|
|
|
'created_at' => time(),
|
|
|
|
],
|
2016-05-11 01:10:06 +05:30
|
|
|
'oldRegistrationConfirmation' => [
|
2016-03-13 23:54:49 +05:30
|
|
|
'key' => 'H23HBDCHHAG2HGHGHS',
|
|
|
|
'account_id' => 4,
|
|
|
|
'type' => \common\models\EmailActivation::TYPE_REGISTRATION_EMAIL_CONFIRMATION,
|
2016-05-11 01:10:06 +05:30
|
|
|
'created_at' => time() - (new \common\models\confirmations\RegistrationConfirmation())->repeatTimeout - 10,
|
|
|
|
],
|
|
|
|
'freshPasswordRecovery' => [
|
|
|
|
'key' => 'H24HBDCHHAG2HGHGHS',
|
|
|
|
'account_id' => 5,
|
|
|
|
'type' => \common\models\EmailActivation::TYPE_FORGOT_PASSWORD_KEY,
|
|
|
|
'created_at' => time(),
|
|
|
|
],
|
|
|
|
'oldPasswordRecovery' => [
|
|
|
|
'key' => 'H25HBDCHHAG2HGHGHS',
|
|
|
|
'account_id' => 6,
|
|
|
|
'type' => \common\models\EmailActivation::TYPE_FORGOT_PASSWORD_KEY,
|
2016-05-11 01:58:04 +05:30
|
|
|
'created_at' => time() - (new \common\models\confirmations\ForgotPassword())->repeatTimeout - 10,
|
2016-03-13 23:54:49 +05:30
|
|
|
],
|
2016-05-17 01:39:44 +05:30
|
|
|
'currentChangeEmailConfirmation' => [
|
2016-05-16 04:03:19 +05:30
|
|
|
'key' => 'H27HBDCHHAG2HGHGHS',
|
|
|
|
'account_id' => 7,
|
2016-05-17 01:39:44 +05:30
|
|
|
'type' => \common\models\EmailActivation::TYPE_CURRENT_EMAIL_CONFIRMATION,
|
|
|
|
'created_at' => time() - 10,
|
|
|
|
],
|
|
|
|
'newEmailConfirmation' => [
|
|
|
|
'key' => 'H28HBDCHHAG2HGHGHS',
|
|
|
|
'account_id' => 8,
|
2016-05-16 04:03:19 +05:30
|
|
|
'type' => \common\models\EmailActivation::TYPE_NEW_EMAIL_CONFIRMATION,
|
|
|
|
'_data' => serialize(['newEmail' => 'my-new-email@ely.by']),
|
|
|
|
'created_at' => time() - 10,
|
|
|
|
],
|
2017-03-07 22:44:54 +05:30
|
|
|
'deeplyExpiredConfirmation' => [
|
|
|
|
'key' => 'H29HBDCHHAG2HGHGHS',
|
|
|
|
'account_id' => 1,
|
|
|
|
'type' => \common\models\EmailActivation::TYPE_NEW_EMAIL_CONFIRMATION,
|
|
|
|
'created_at' => 1487695872,
|
|
|
|
],
|
2016-01-21 02:44:29 +05:30
|
|
|
];
|