mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 02:26:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			345 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			345 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\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;
 | 
						|
}
 |