mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-05-24 02:14:21 -04:00
* fix typo * php-cs traits * CS fixer pass * Password protect User routes * Implement checks to prevent editing a deleted record * Clean up payment flows * Fixes for tests
34 lines
693 B
PHP
34 lines
693 B
PHP
<?php
|
|
/**
|
|
* 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
|
|
*/
|
|
|
|
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 = '';
|
|
$user->last_login = now();
|
|
$user->failed_logins = 0;
|
|
$user->signature = '';
|
|
$user->theme_id = 0;
|
|
|
|
return $user;
|
|
}
|
|
}
|