the browser-facing portion of osu!
at master 16 lines 349 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\Traits; 7 8use App\Models\Store\Order; 9 10trait UserStore 11{ 12 public function orders() 13 { 14 return $this->hasMany(Order::class); 15 } 16}