diff --git a/src/HAProxy/Command/SendCommand.php b/src/HAProxy/Command/SendCommand.php new file mode 100644 index 0000000..9522dcd --- /dev/null +++ b/src/HAProxy/Command/SendCommand.php @@ -0,0 +1,37 @@ +. + */ + +namespace HAProxy\Command; + +class SendCommand extends EnableServer { + public function __construct($backend, $server, $action) { + $this->backend = $backend; + $this->server = $server; + $this->action = $action; + } +}