Evernote\Model\EnmlNoteContent::__construct PHP Method

__construct() public method

public __construct ( $content, Evernote\Enml\Converter\HtmlConverterInterface $htmlConverter = null )
$htmlConverter Evernote\Enml\Converter\HtmlConverterInterface
    public function __construct($content, HtmlConverterInterface $htmlConverter = null)
    {
        if (!$this->hasXmlDeclaration($content)) {
            $content = $this->addXmlDeclaration($content);
        }
        if (!$this->hasDoctypeDeclaration($content)) {
            $content = $this->addDoctypeDeclaration($content);
        }
        $this->content = $content;
        $this->htmlConverter = $htmlConverter;
    }