Doctrine\OXM\Marshaller\Helper\WriterHelper::writeValue PHP Method

writeValue() public method

public writeValue ( $value )
    public function writeValue($value)
    {
        if ($this->needsCdataWrapping($value)) {
            $this->cursor->writeCdata($value);
        } else {
            $this->cursor->text($value);
        }
    }