mirror of
https://github.com/jbcr/ezmigrationbundle.git
synced 2026-04-26 09:58:14 +02:00
16 lines
265 B
PHP
16 lines
265 B
PHP
<?php
|
|
|
|
namespace Kaliop\eZMigrationBundle\API;
|
|
|
|
/**
|
|
* Interface for all complex field creation classes.
|
|
*/
|
|
interface ComplexFieldInterface
|
|
{
|
|
/**
|
|
* Create a non primitive field value
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function createValue();
|
|
} |