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

10 lines
133 B
PHP
Raw Normal View History

2015-02-08 08:03:55 +01:00
<?php
2015-11-21 07:17:29 +01:00
interface MigratableObject
{
/**
* Migrate the object up to the current version.
*/
public function up();
2015-02-08 08:03:55 +01:00
}