19 lines
272 B
PHP
Executable File
19 lines
272 B
PHP
Executable File
<?php
|
|
namespace AIOWPS\Firewall;
|
|
|
|
/**
|
|
* Trait which exits the current request
|
|
*/
|
|
trait Action_Exit_Trait {
|
|
|
|
/**
|
|
* Exit when the rule condition is satisfied.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function do_action() {
|
|
Event::raise('action_before_exit');
|
|
exit();
|
|
}
|
|
}
|