the browser-facing portion of osu!
at master 826 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\Score\Best; 7 8/** 9 * @property int $beatmap_id 10 * @property int $count100 11 * @property int $count300 12 * @property int $count50 13 * @property int $countgeki 14 * @property int $countkatu 15 * @property int $countmiss 16 * @property string $country_acronym 17 * @property \Carbon\Carbon $date 18 * @property int $enabled_mods 19 * @property int $hidden 20 * @property int $maxcombo 21 * @property bool $perfect 22 * @property float|null $pp 23 * @property mixed $rank 24 * @property bool $replay 25 * @property int $score 26 * @property int $score_id 27 * @property int $user_id 28 */ 29class Osu extends Model 30{ 31 protected $table = 'osu_scores_high'; 32}