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