mirror of
https://github.com/jbcr/ezmigrationbundle.git
synced 2026-04-25 17:38:12 +02:00
16 lines
353 B
PHP
16 lines
353 B
PHP
<?php
|
|
|
|
namespace Kaliop\eZMigrationBundle\API;
|
|
|
|
/**
|
|
* Implemented by classes which finds migrations definitions files
|
|
*/
|
|
interface LoaderInterface
|
|
{
|
|
/**
|
|
* @param array $paths
|
|
* @return string[] migrations definitions. key: name, value: contents of the definition as string
|
|
*/
|
|
public function getDefinitions($paths = array());
|
|
}
|