|
1
|
<?php |
|
2
|
|
|
3
|
namespace WPDesk\FCF\Free\Settings\Migrations; |
|
4
|
|
|
5
|
interface Migration { |
|
6
|
|
|
7
|
/** |
|
8
|
* @return string |
|
9
|
*/ |
|
10
|
public function get_version(): string; |
|
11
|
|
|
12
|
/** |
|
13
|
* Performs migration operations.
|
|
14
|
*
|
|
15
|
* @return void |
|
16
|
*/ |
|
17
|
public function up(); |
|
18
|
} |
|
19
|
|