bad-request-executor.php
23 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace Jet_Form_Builder\Actions\Events\Bad_Request; |
| 5 | |
| 6 | use Jet_Form_Builder\Actions\Events\Base_Executor; |
| 7 | |
| 8 | // If this file is called directly, abort. |
| 9 | if ( ! defined( 'WPINC' ) ) { |
| 10 | die; |
| 11 | } |
| 12 | |
| 13 | class Bad_Request_Executor extends Base_Executor { |
| 14 | /** |
| 15 | * @return bool |
| 16 | */ |
| 17 | public function is_supported(): bool { |
| 18 | return true; |
| 19 | } |
| 20 | |
| 21 | |
| 22 | } |
| 23 |