1<?php 2 3namespace Pterodactyl\Contracts\Http; 4 5interface ClientPermissionsRequest 6{ 7 /** 8 * Returns the permissions string indicating which permission should be used to 9 * validate that the authenticated user has permission to perform this action against 10 * the given resource (server). 11 */ 12 public function permission(): string; 13} 14 15