|
1
|
<?php |
|
2
|
|
|
3
|
|
|
4
|
namespace JFB_Modules\Block_Sanitizer\Interfaces; |
|
5
|
|
|
6
|
// If this file is called directly, abort. |
|
7
|
if ( ! defined( 'WPINC' ) ) { |
|
8
|
die; |
|
9
|
} |
|
10
|
|
|
11
|
interface For_Blocks_Sanitizer_Interface extends Is_Supported_Sanitizer_Interface { |
|
12
|
|
|
13
|
public function for_blocks(): array; |
|
14
|
|
|
15
|
} |
|
16
|
|