Files
DesignPatternsPHP/AbstractFactory/Html/Text.php
Dominik Liebler 3b7eb295c8 cs AbstractFactory
2013-09-09 10:45:52 +02:00

24 lines
410 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>';
}
}