mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-17 07:08:19 +00:00
Removed my own validation source in favour of Ardent.
This commit is contained in:
@@ -4,8 +4,10 @@ use Illuminate\Auth\Reminders\RemindableInterface;
|
||||
use Illuminate\Auth\Reminders\RemindableTrait;
|
||||
use Illuminate\Auth\UserInterface;
|
||||
use Illuminate\Auth\UserTrait;
|
||||
use LaravelBook\Ardent\Ardent;
|
||||
|
||||
class User extends Elegant implements UserInterface, RemindableInterface
|
||||
|
||||
class User extends Ardent implements UserInterface, RemindableInterface
|
||||
{
|
||||
|
||||
use UserTrait, RemindableTrait;
|
||||
@@ -22,7 +24,7 @@ class User extends Elegant implements UserInterface, RemindableInterface
|
||||
public static $factory
|
||||
= [
|
||||
'email' => 'email',
|
||||
'password' => 'string',
|
||||
'password' => 'string|60',
|
||||
'migrated' => '0'
|
||||
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user