mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-22 11:12:20 +00:00
11 lines
173 B
PHP
Executable File
11 lines
173 B
PHP
Executable File
<?php
|
|
|
|
namespace App\SSH\Services\Firewall;
|
|
|
|
use App\SSH\Services\ServiceInterface;
|
|
|
|
interface Firewall extends ServiceInterface
|
|
{
|
|
public function applyRules(): void;
|
|
}
|