mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-20 02:11:36 +00:00
11 lines
278 B
PHP
Executable File
11 lines
278 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Contracts;
|
|
|
|
interface Firewall
|
|
{
|
|
public function addRule(string $type, string $protocol, int $port, string $source, ?string $mask): void;
|
|
|
|
public function removeRule(string $type, string $protocol, int $port, string $source, ?string $mask): void;
|
|
}
|