Files
fusionpbx/app/event_guard/resources/interfaces/event_guard_interface.php
markjcrane 2c448c7bfb Update Event Guard version 2.0
- Use the service class
- Use object interfaces
- Add support for nftables
2026-01-29 05:31:02 -07:00

12 lines
303 B
PHP

<?php
/**
* event_guard_interface class
*
*/
interface event_guard_interface {
public function block_add(string $ip_address, string $filter) : bool;
public function block_delete(string $ip_address, string $filter) : bool;
public function block_exists(string $ip_address, string $filter) : bool;
}