Files
ezmigrationbundle/API/KeyMatcherInterface.php
T

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