eZ\Publish\Core\FieldType\Tests\RichText\Converter\Xslt\EzxmlToDocbookTest::getConverter PHP Method

getConverter() protected method

protected getConverter ( ) : Xslt
return eZ\Publish\Core\FieldType\RichText\Converter\Xslt
    protected function getConverter()
    {
        if ($this->converter === null) {
            $this->converter = new Aggregate(array(new ToRichTextPreNormalize(new Expanding(), new EmbedLinking()), new Xslt($this->getConversionTransformationStylesheet(), $this->getCustomConversionTransformationStylesheets())));
        }
        return $this->converter;
    }