silverstripe-blog/code/compat/tasks/MigratableObject.php

9 lines
121 B
PHP
Raw Normal View History

2015-02-08 20:03:55 +13:00
<?php
interface MigratableObject {
/**
2015-05-10 02:33:12 +12:00
* Migrate the object up to the current version.
2015-02-08 20:03:55 +13:00
*/
public function up();
}