From 128003a94c6e547bf0649c1de7c4da64480c2955 Mon Sep 17 00:00:00 2001 From: NoAvatar Date: Wed, 16 Oct 2024 02:50:23 +1000 Subject: [PATCH] Delete User doc comments --- app/Models/User.php | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/app/Models/User.php b/app/Models/User.php index 3dfbd80..9dc525b 100644 --- a/app/Models/User.php +++ b/app/Models/User.php @@ -2,42 +2,25 @@ namespace App\Models; -// use Illuminate\Contracts\Auth\MustVerifyEmail; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Foundation\Auth\User as Authenticatable; use Illuminate\Notifications\Notifiable; class User extends Authenticatable { - /** @use HasFactory<\Database\Factories\UserFactory> */ use HasFactory, Notifiable; - /** - * The attributes that are mass assignable. - * - * @var array - */ protected $fillable = [ 'name', 'email', 'password', ]; - /** - * The attributes that should be hidden for serialization. - * - * @var array - */ protected $hidden = [ 'password', 'remember_token', ]; - /** - * Get the attributes that should be cast. - * - * @return array - */ protected function casts(): array { return [