mirror of
https://github.com/JBDevLabs/ezmigrationbundle.git
synced 2026-03-24 08:52:16 +01:00
12 lines
353 B
PHP
12 lines
353 B
PHP
<?php
|
|
|
|
namespace Kaliop\eZMigrationBundle\Core\ReferenceResolver;
|
|
|
|
/**
|
|
* At the moment this interface does nothing more than its parent.
|
|
* *However* we assume that all classes implementing this interface do produce a regexp which starts with a left anchoring: /^.../
|
|
*/
|
|
interface PrefixBasedResolverInterface extends RegexpBasedResolverInterface
|
|
{
|
|
}
|