mirror of
https://github.com/jbcr/ezmigrationbundle.git
synced 2026-03-27 18:22:22 +01:00
14 lines
419 B
PHP
14 lines
419 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: /^.../
|
|
*
|
|
* @deprecated in favour of EmbeddedReferenceResolverInterface
|
|
*/
|
|
interface PrefixBasedResolverInterface extends RegexpBasedResolverInterface
|
|
{
|
|
}
|