mirror of
https://github.com/jbcr/ezmigrationbundle.git
synced 2026-03-25 17:32:05 +01:00
14 lines
347 B
PHP
14 lines
347 B
PHP
<?php
|
|
|
|
namespace Kaliop\eZMigrationBundle\Core\ReferenceResolver;
|
|
|
|
use Kaliop\eZMigrationBundle\API\ReferenceResolverInterface;
|
|
|
|
interface RegexpBasedResolverInterface extends ReferenceResolverInterface
|
|
{
|
|
/**
|
|
* Returns the regexp used to identify is a string is a reference
|
|
* @return string
|
|
*/
|
|
public function getRegexp();
|
|
} |