public function FailInfo::getValue in Replication 8
Gets the data value.
Return value
mixed The data value.
Overrides TypedData::getValue
File
- src/
FailInfo.php, line 15
Class
- FailInfo
- The 'fail_info' property for history fields.
Namespace
Drupal\replicationCode
public function getValue() {
// Check if we have explicitly set a value.
if (isset($this->value) && $this->value !== NULL) {
return $this->value;
}
return '';
}