silverstripe-blog/code/compat/tasks/MigratableObject.php
2015-03-05 14:14:34 +13:00

10 lines
121 B
PHP

<?php
interface MigratableObject {
/**
* Migrate the object up to the current version
*/
public function up();
}