mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-08 07:03:23 -06:00
17 lines
391 B
PHP
17 lines
391 B
PHP
|
<?php
|
||
|
use League\FactoryMuffin\Facade;
|
||
|
|
||
|
Facade::define(
|
||
|
'User',
|
||
|
[
|
||
|
'email' => 'safeEmail',
|
||
|
'password' => function () {
|
||
|
return \Str::random(60);
|
||
|
},
|
||
|
'reset' => function () {
|
||
|
return \Str::random(32);
|
||
|
},
|
||
|
'remember_token' => null,
|
||
|
'migrated' => 'boolean'
|
||
|
]
|
||
|
);
|