mirror of
https://github.com/JBDevLabs/ezmigrationbundle.git
synced 2026-04-25 17:18:00 +02:00
16 lines
290 B
PHP
16 lines
290 B
PHP
<?php
|
|
|
|
namespace Kaliop\eZMigrationBundle\API;
|
|
|
|
interface KeyMatcherInterface
|
|
{
|
|
/**
|
|
* Matches one item based on a unique key (id, identifier etc...)
|
|
*
|
|
* @param string|int $key
|
|
* @return mixed
|
|
* @throws \Exception
|
|
*/
|
|
public function matchByKey($key);
|
|
}
|