. Licensed under the GNU Affero General Public License v3.0. // See the LICENCE file in the repository root for full licence text. namespace App\Models; class DeletedUser extends User { public null $team = null; public $user_avatar = null; public $username = '[deleted user]'; public function trashed() { return true; } }