mirror of
https://github.com/jbcr/ezmigrationbundle.git
synced 2026-03-27 18:22:22 +01: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();
|
|
} |