the browser-facing portion of osu!
at master 560 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\Forum; 7 8/** 9 * @property int $auth_option_id 10 * @property int $auth_setting 11 * @property int $role_id 12 */ 13class AuthRole extends Model 14{ 15 public $incrementing = false; 16 public $timestamps = false; 17 18 protected $primaryKey = ':composite'; 19 protected $primaryKeys = ['role_id', 'auth_option_id']; 20 protected $table = 'phpbb_acl_roles_data'; 21}