open-orchestra/open-orchestra-bbcode-bundle

View on GitHub
BBcodeBundle/ElementNode/BBcodeTextNode.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace OpenOrchestra\BBcodeBundle\ElementNode;

use JBBCode\TextNode;

/**
 * Class BBcodeTextNode
 */
class BBcodeTextNode extends TextNode
{
    /**
     * Returns the html representation of this node, in a preview context
     *
     * @return string
     */
    public function getAsPreviewHTML()
    {
        return $this->getAsHTML();
    }
}