the browser-facing portion of osu!
at master 531 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 string $auth_option 10 * @property int $auth_option_id 11 * @property int $founder_only 12 * @property int $is_global 13 * @property int $is_local 14 */ 15class AuthOption extends Model 16{ 17 protected $table = 'phpbb_acl_options'; 18 19 protected $primaryKey = 'auth_option_id'; 20 public $timestamps = false; 21}