Doctrine\OXM\Types\Type::convertToXmlValue PHP Method

convertToXmlValue() public method

Converts a value from its PHP representation to its XML representation of this type.
public convertToXmlValue ( mixed $value ) : mixed
$value mixed The value to convert.
return mixed The XML representation of the value.
    public function convertToXmlValue($value)
    {
        return $value;
    }