Flarum\Formatter\Formatter::unparse PHP 메소드

unparse() 공개 메소드

Unparse XML.
public unparse ( string $xml ) : string
$xml string
리턴 string
    public function unparse($xml)
    {
        return Unparser::unparse($xml);
    }

Usage Example

예제 #1
0
 /**
  * Unparse the parsed content.
  *
  * @param string $value
  *
  * @return string
  */
 public function getContentAttribute($value)
 {
     return static::$formatter->unparse($value);
 }