aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/User.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/User.php')
-rw-r--r--app/User.php7
1 files changed, 1 insertions, 6 deletions
diff --git a/app/User.php b/app/User.php
index bfd96a6..870d27c 100644
--- a/app/User.php
+++ b/app/User.php
@@ -1,14 +1,10 @@
<?php
-
namespace App;
-
use Illuminate\Notifications\Notifiable;
use Illuminate\Foundation\Auth\User as Authenticatable;
-
class User extends Authenticatable
{
use Notifiable;
-
/**
* The attributes that are mass assignable.
*
@@ -17,7 +13,6 @@ class User extends Authenticatable
protected $fillable = [
'name', 'email', 'password',
];
-
/**
* The attributes that should be hidden for arrays.
*
@@ -26,4 +21,4 @@ class User extends Authenticatable
protected $hidden = [
'password', 'remember_token',
];
-}
+} \ No newline at end of file