mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-17 17:01:37 +00:00
11 lines
134 B
PHP
Executable File
11 lines
134 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Contracts;
|
|
|
|
interface SSHCommand
|
|
{
|
|
public function file(): string;
|
|
|
|
public function content(): string;
|
|
}
|