mirror of
https://github.com/jbcr/ezmigrationbundle.git
synced 2026-04-27 02:18:02 +02:00
12 lines
193 B
PHP
12 lines
193 B
PHP
<?php
|
|
|
|
namespace Kaliop\eZMigrationBundle\API;
|
|
|
|
interface MatcherInterface
|
|
{
|
|
/**
|
|
* @param array $conditions
|
|
* @return mixed
|
|
*/
|
|
public function match(array $conditions);
|
|
} |