mirror of
https://github.com/JBDevLabs/ezmigrationbundle.git
synced 2026-03-24 08:52:16 +01:00
17 lines
322 B
PHP
17 lines
322 B
PHP
<?php
|
|
|
|
namespace Kaliop\eZMigrationBundle\API;
|
|
|
|
use Kaliop\eZMigrationBundle\API\Collection\MigrationCollection;
|
|
|
|
/**
|
|
* Implemented by classes which store details of the executed migrations
|
|
*/
|
|
interface StorageHandlerInterface
|
|
{
|
|
/**
|
|
* @return MigrationCollection
|
|
*/
|
|
public function loadMigrations();
|
|
}
|