mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-24 17:52:25 +01:00
12 lines
207 B
PHP
12 lines
207 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Composite;
|
|
|
|
class TextElement extends FormElement
|
|
{
|
|
public function render($indent = 0)
|
|
{
|
|
return str_repeat(' ', $indent) . 'this is a text element';
|
|
}
|
|
}
|