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;
7
8/**
9 * @property string $code
10 * @property int $display_on_posting
11 * @property string $emotion
12 * @property int $smiley_height
13 * @property int $smiley_id
14 * @property int $smiley_order
15 * @property string $smiley_url
16 * @property int $smiley_width
17 */
18class Smiley extends Model
19{
20 protected $table = 'phpbb_smilies';
21}