Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
overpastor
/
wp
/
wp.
/
wp-content
/
plugins
/
imunify-security
/
inc
/
App
/
Defender
/
Handler
:
HandlerInterface.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * Copyright (с) Cloud Linux GmbH & Cloud Linux Software, Inc 2010-2025 All Rights Reserved * * Licensed under CLOUD LINUX LICENSE AGREEMENT * https://www.cloudlinux.com/legal/ */ namespace CloudLinux\Imunify\App\Defender\Handler; /** * Interface for rule handlers in the Defender module. * * This interface defines the methods that any rule handler must implement. * * @since 2.1.0 */ interface HandlerInterface { /** * Apply the rule handler. */ public function apply(); /** * Maybe block the request. */ public function maybeBlock(); }