| 1 |
<?php |
| 2 |
|
| 3 |
|
| 4 |
namespace JFB_Components\Export\Interfaces; |
| 5 |
|
| 6 |
// If this file is called directly, abort. |
| 7 |
if ( ! defined( 'WPINC' ) ) { |
| 8 |
die; |
| 9 |
} |
| 10 |
|
| 11 |
interface Base_Export_Controller_It { |
| 12 |
|
| 13 |
public function do_export(); |
| 14 |
|
| 15 |
public function set_exporter( Base_Export_It $exporter ); |
| 16 |
|
| 17 |
public function get_exporter(): Base_Export_It; |
| 18 |
|
| 19 |
} |
| 20 |
|