Files
DesignPatternsPHP/AbstractFactory/Html/Text.php
2013-09-03 14:42:15 +02:00

26 lines
413 B
PHP

<?php
namespace DesignPatterns\AbstractFactory\Html;
use DesignPatterns\AbstractFactory\Text as BaseText;
/**
* Class Text
*
* Text is a concrete text for HTML rendering
*/
class Text extends BaseText
{
/**
* some crude rendering from HTML output
*
* @return string
*/
public function render()
{
return '<div>' . htmlspecialchars($this->_text) . '</div>';
}
}