rule-collect-error-it.php
18 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace JFB_Modules\Validation\Advanced_Rules\Interfaces; |
| 5 | |
| 6 | use JFB_Modules\Block_Parsers\Field_Data_Parser; |
| 7 | |
| 8 | // If this file is called directly, abort. |
| 9 | if ( ! defined( 'WPINC' ) ) { |
| 10 | die; |
| 11 | } |
| 12 | |
| 13 | interface Rule_Collect_Error_It { |
| 14 | |
| 15 | public function collect_error( Field_Data_Parser $parser ); |
| 16 | |
| 17 | } |
| 18 |