. Licensed under the GNU Affero General Public License v3.0. // See the LICENCE file in the repository root for full licence text. declare(strict_types=1); namespace App\Models; use Illuminate\Database\Eloquent\Collection; use Illuminate\Database\Eloquent\Relations\HasMany; /** * @property int $id * @property string $name * @property string $description * @property-read Collection $beatmapTags */ class Tag extends Model { public function beatmapTags(): HasMany { return $this->hasMany(BeatmapTag::class); } }