Files
ezmigrationbundle/API/LoaderInterface.php
T
2016-07-30 01:43:55 +01:00

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());
}