mirror of
https://github.com/JBDevLabs/ezmigrationbundle.git
synced 2026-03-24 08:52:16 +01:00
13 lines
248 B
PHP
13 lines
248 B
PHP
<?php
|
|
|
|
namespace Kaliop\eZMigrationBundle\API;
|
|
|
|
interface EnumerableMatcherInterface
|
|
{
|
|
/**
|
|
* Returns the list of the valid keys to be used in conditions arrays
|
|
* @return string[]
|
|
*/
|
|
public function listAllowedConditions();
|
|
}
|