support-option-query-it.php
20 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace JFB_Modules\Option_Field\Interfaces; |
| 5 | |
| 6 | use JFB_Modules\Option_Query\Interfaces\Option_Query_It; |
| 7 | |
| 8 | // If this file is called directly, abort. |
| 9 | if ( ! defined( 'WPINC' ) ) { |
| 10 | die; |
| 11 | } |
| 12 | |
| 13 | interface Support_Option_Query_It { |
| 14 | |
| 15 | public function get_query(): Option_Query_It; |
| 16 | |
| 17 | public function set_query( Option_Query_It $query ); |
| 18 | |
| 19 | } |
| 20 |