the browser-facing portion of osu!
at master 27 lines 788 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 6declare(strict_types=1); 7 8namespace Database\Factories\UserStatistics\Spotlight; 9 10use Database\Factories\UserStatistics\ModelFactory as BaseFactory; 11 12abstract class ModelFactory extends BaseFactory 13{ 14 public function definition(): array 15 { 16 $definition = parent::definition(); 17 18 unset($definition['accuracy_new']); 19 unset($definition['rank_score']); 20 unset($definition['rank_score_index']); 21 unset($definition['sh_rank_count']); 22 unset($definition['total_seconds_played']); 23 unset($definition['xh_rank_count']); 24 25 return $definition; 26 } 27}