DesignPatternsPHP/Composite/TextElement.php

22 lines
352 B
PHP
Raw Normal View History

2013-05-11 01:17:22 +02:00
<?php
namespace DesignPatterns\Composite;
2013-09-11 16:10:36 +02:00
/**
* Class TextElement
*/
2013-05-11 01:17:22 +02:00
class TextElement extends FormElement
{
2013-09-11 16:10:36 +02:00
/**
* renders the text element
*
* @param int $indent
*
* @return mixed|string
*/
public function render($indent = 0)
2013-05-11 01:17:22 +02:00
{
return str_repeat(' ', $indent) . 'this is a text element';
2013-05-11 01:17:22 +02:00
}
}