diff options
author | Marvin Borner | 2018-06-30 23:44:50 +0200 |
---|---|---|
committer | Marvin Borner | 2018-06-30 23:44:50 +0200 |
commit | b1c501e2f239ef6dcbf5e55e403834d793c6a0f6 (patch) | |
tree | 4532adc1e40f0da7580132b2a82c67c946a478f3 /app/User.php | |
parent | 70233ba2d306019d415b94e270d3a90672236544 (diff) |
Finished websocket integration
Diffstat (limited to 'app/User.php')
-rw-r--r-- | app/User.php | 7 |
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 |