2019-04-26 20:51:02 +10:00
|
|
|
<?php
|
2019-05-11 13:32:07 +10:00
|
|
|
/**
|
2020-09-06 19:38:10 +10:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 13:32:07 +10:00
|
|
|
*
|
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
|
*
|
2022-04-27 13:20:41 +10:00
|
|
|
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 13:32:07 +10:00
|
|
|
*
|
2021-06-16 16:58:16 +10:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2019-05-11 13:32:07 +10:00
|
|
|
*/
|
2019-04-26 20:51:02 +10:00
|
|
|
|
|
|
|
|
namespace App\Factory;
|
|
|
|
|
|
2022-06-30 10:11:55 +10:00
|
|
|
use App\Models\CompanyUser;
|
2019-04-26 20:51:02 +10:00
|
|
|
use App\Models\User;
|
|
|
|
|
|
|
|
|
|
class UserFactory
|
|
|
|
|
{
|
2020-03-24 20:15:30 +11:00
|
|
|
public static function create(int $account_id) :User
|
2019-12-31 08:59:12 +11:00
|
|
|
{
|
|
|
|
|
$user = new User;
|
2019-04-26 20:51:02 +10:00
|
|
|
|
2020-03-24 20:15:30 +11:00
|
|
|
$user->account_id = $account_id;
|
2019-12-31 08:59:12 +11:00
|
|
|
$user->first_name = '';
|
|
|
|
|
$user->last_name = '';
|
|
|
|
|
$user->phone = '';
|
|
|
|
|
$user->email = '';
|
|
|
|
|
$user->last_login = now();
|
|
|
|
|
$user->failed_logins = 0;
|
|
|
|
|
$user->signature = '';
|
|
|
|
|
$user->theme_id = 0;
|
2022-06-21 09:57:17 +00:00
|
|
|
|
2019-12-31 08:59:12 +11:00
|
|
|
return $user;
|
|
|
|
|
}
|
|
|
|
|
}
|