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
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2019-04-26 12:51:02 +02:00
|
|
|
|
|
|
|
namespace App\Factory;
|
|
|
|
|
|
|
|
use App\Models\User;
|
|
|
|
|
|
|
|
class UserFactory
|
|
|
|
{
|
|
|
|
public static function create() :User
|
|
|
|
{
|
|
|
|
$user = new User;
|
|
|
|
|
|
|
|
$user->first_name = '';
|
|
|
|
$user->last_name = '';
|
|
|
|
$user->phone = '';
|
|
|
|
$user->email = '';
|
2019-06-06 06:51:28 +02:00
|
|
|
$user->last_login = now();
|
2019-04-26 12:51:02 +02:00
|
|
|
$user->failed_logins = 0;
|
|
|
|
$user->signature = '';
|
2019-06-06 06:51:28 +02:00
|
|
|
$user->theme_id = 0;
|
2019-04-26 12:51:02 +02:00
|
|
|
|
|
|
|
return $user;
|
|
|
|
}
|
2019-06-06 06:51:28 +02:00
|
|
|
}
|