1<?php
2
3// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the GNU Affero General Public License v3.0.
4// See the LICENCE file in the repository root for full licence text.
5
6namespace App\Models;
7
8class DeletedUser extends User
9{
10 public null $team = null;
11 public $user_avatar = null;
12 public $username = '[deleted user]';
13
14 public function trashed()
15 {
16 return true;
17 }
18}