mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 08:46:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			374 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			374 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Pterodactyl\Contracts\Repository\Daemon;
 | |
| 
 | |
| use Psr\Http\Message\ResponseInterface;
 | |
| 
 | |
| interface CommandRepositoryInterface extends BaseRepositoryInterface
 | |
| {
 | |
|     /**
 | |
|      * Send a command to a server.
 | |
|      *
 | |
|      * @param string $command
 | |
|      * @return \Psr\Http\Message\ResponseInterface
 | |
|      */
 | |
|     public function send(string $command): ResponseInterface;
 | |
| }
 | 
