mirror of
https://github.com/elyby/accounts.git
synced 2024-11-06 16:21:08 +05:30
7e90f1838e
Реализована форма подтверждения email, обмазана тестами Слегка отрефакторена форма регистрации и авторизации в пользу выноса части логики в общего родителя Проект зачищен от стандартных тестовых параметров Пофикшены методы доступа к API
21 lines
574 B
PHP
21 lines
574 B
PHP
<?php
|
|
/**
|
|
* @var $faker \Faker\Generator
|
|
* @var $index integer
|
|
*/
|
|
|
|
$security = Yii::$app->getSecurity();
|
|
|
|
return [
|
|
'uuid' => $faker->uuid,
|
|
'username' => $faker->userName,
|
|
'email' => $faker->email,
|
|
'password_hash' => $security->generatePasswordHash('password_' . $index),
|
|
'password_hash_strategy' => \common\models\Account::PASS_HASH_STRATEGY_YII2,
|
|
'password_reset_token' => NULL,
|
|
'auth_key' => $security->generateRandomString(),
|
|
'status' => \common\models\Account::STATUS_ACTIVE,
|
|
'created_at' => time(),
|
|
'updated_at' => time(),
|
|
];
|