Skip to content
Snippets Groups Projects

Add ComputedEnum::setValue()

+ 8
0
@@ -38,4 +38,12 @@ class ComputedEnum extends TypedData {
return NULL;
}
/**
* {@inheritdoc}
*/
public function setValue($value, $notify = TRUE) {
$this->enum = NULL;
parent::setValue($value, $notify);
}
}
Loading