Introduce configuration-tester

This commit is contained in:
Romain Neutron
2013-04-17 21:19:55 +02:00
parent 1b82dfb1da
commit 5a80e9dc22
36 changed files with 1810 additions and 331 deletions

View File

@@ -11,9 +11,17 @@
namespace Alchemy\Phrasea\Setup\Version\Probe;
use Alchemy\Phrasea\Setup\Version\Migration\MigrationInterface;
interface ProbeInterface
{
/**
* @return Boolean
*/
public function isMigrable();
/**
* @return MigrationInterface
*/
public function getMigration();
}