mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-05-24 15:29:39 +02:00
22 lines
333 B
PHP
22 lines
333 B
PHP
<?php
|
|
|
|
/*
|
|
* DesignPatternPHP
|
|
*/
|
|
|
|
namespace DesignPatterns\AbstractFactory\Html;
|
|
|
|
use DesignPatterns\AbstractFactory\Text as BaseText;
|
|
|
|
/**
|
|
* Text is a concrete text for HTML rendering
|
|
*/
|
|
class Text extends BaseText
|
|
{
|
|
|
|
public function render()
|
|
{
|
|
return "<div>" . htmlspecialchars($this->_text) . '</div>';
|
|
}
|
|
|
|
} |