Files
animethemes-server/app/Http/Api/Field/Auth/Role/RolePriorityField.php
T

18 lines
335 B
PHP

<?php
declare(strict_types=1);
namespace App\Http\Api\Field\Auth\Role;
use App\Http\Api\Field\IntField;
use App\Http\Api\Schema\Schema;
use App\Models\Auth\Role;
class RolePriorityField extends IntField
{
public function __construct(Schema $schema)
{
parent::__construct($schema, Role::ATTRIBUTE_PRIORITY);
}
}