| Total Complexity | 5 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Coverage | 72.72% |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | class EzAuthor extends AbstractFieldHandler implements FieldValueImporterInterface |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * Creates a value object to use as the field value when setting an author field type. |
||
| 16 | * |
||
| 17 | * @param array $fieldValue The definition of the field value, structured in the yml file |
||
| 18 | * @param array $context The context for execution of the current migrations. Contains f.e. the path to the migration |
||
| 19 | * @return AuthorValue |
||
| 20 | */ |
||
| 21 | 1 | public function hashToFieldValue($fieldValue, array $context = array()) |
|
| 42 |