2019-04-26 12:51:02 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2020-01-07 01:13:47 +01:00
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2019-04-26 12:51:02 +02:00
|
|
|
|
|
|
|
namespace App\Factory;
|
|
|
|
|
|
|
|
use App\Models\User;
|
|
|
|
|
|
|
|
class UserFactory
|
|
|
|
{
|
2020-03-24 10:15:30 +01:00
|
|
|
public static function create(int $account_id) :User
|
2019-12-30 22:59:12 +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 = '';
|
|
|
|
$user->theme_id = 0;
|
|
|
|
|
|
|
|
return $user;
|
|
|
|
}
|
|
|
|
}
|