Files
DesignPatternsPHP/Creational/AbstractFactory/Html/Text.php
Antonio Spinelli e59d70a0ac start a restructure
2014-03-21 18:03:45 -03: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>';
}
}