7
0
mirror of https://github.com/pelican-dev/panel.git synced 2025-07-20 02:25:19 +02:00
2018-01-05 18:27:47 -06:00

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;
}