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

10 lines
121 B
PHP

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