mirror of
https://github.com/flarum/framework.git
synced 2024-11-27 02:53:37 +08:00
15 lines
417 B
PHP
15 lines
417 B
PHP
<?php
|
|
|
|
$factory('Flarum\Core\Discussions\Discussion', [
|
|
'title' => $faker->sentence,
|
|
'start_time' => $faker->dateTimeThisYear,
|
|
'start_user_id' => 'factory:Flarum\Core\Users\User'
|
|
]);
|
|
|
|
$factory('Flarum\Core\Users\User', [
|
|
'username' => $faker->userName,
|
|
'email' => $faker->safeEmail,
|
|
'password' => 'password',
|
|
'join_time' => $faker->dateTimeThisYear,
|
|
'time_zone' => $faker->timezone
|
|
]); |