the browser-facing portion of osu!
at master 1.2 kB 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 11 * @property int $accuracy_count 12 * @property float $accuracy_new 13 * @property int $accuracy_total 14 * @property int $count100 15 * @property int $count300 16 * @property int $count50 17 * @property int $countMiss 18 * @property string $country_acronym 19 * @property int $exit_count 20 * @property int $fail_count 21 * @property float $hit_accuracy 22 * @property \Carbon\Carbon $last_played 23 * @property \Carbon\Carbon $last_update 24 * @property float $level 25 * @property int $max_combo 26 * @property int $playcount 27 * @property int $rank 28 * @property float $rank_score 29 * @property int $rank_score_index 30 * @property int $ranked_score 31 * @property int $replay_popularity 32 * @property int $s_rank_count 33 * @property int $sh_rank_count 34 * @property int $total_score 35 * @property int $user_id 36 * @property int $x_rank_count 37 * @property int $xh_rank_count 38 */ 39class Mania extends Model 40{ 41 protected $table = 'osu_user_stats_mania'; 42}