nooktheme/app/Contracts/Http/ClientPermissionsRequest.php
mowetentertainment1 eb5b65cec6 initial commit
2025-11-01 19:45:11 -04:00

14 lines
353 B
PHP

<?php
namespace Pterodactyl\Contracts\Http;
interface ClientPermissionsRequest
{
/**
* Returns the permissions string indicating which permission should be used to
* validate that the authenticated user has permission to perform this action against
* the given resource (server).
*/
public function permission(): string;
}