the browser-facing portion of osu!
at master 26 lines 748 B view raw
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\UserStatistics; 7 8/** 9 * @property int $a_rank_count 10 * @property float $accuracy_new 11 * @property string $country_acronym 12 * @property \Carbon\Carbon $last_played 13 * @property \Carbon\Carbon $last_update 14 * @property int $playcount 15 * @property float $rank_score 16 * @property int $rank_score_index 17 * @property int $s_rank_count 18 * @property int $sh_rank_count 19 * @property int $user_id 20 * @property int $x_rank_count 21 * @property int $xh_rank_count 22 */ 23class Mania4k extends VariantModel 24{ 25 protected $table = 'osu_user_stats_mania_4k'; 26}