silverstripe-blog/code/compat/tasks/MigratableObject.php
Christopher Pitt 787c02a19d Clean up
2015-05-11 10:11:21 +12:00

9 lines
121 B
PHP

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