vito/app/Contracts/SSHCommand.php
2023-08-04 18:28:04 +02:00

11 lines
134 B
PHP
Executable File

<?php
namespace App\Contracts;
interface SSHCommand
{
public function file(): string;
public function content(): string;
}