mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-05-23 23:09:43 +02:00
12 lines
168 B
PHP
12 lines
168 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Composite;
|
|
|
|
class TextElement extends FormElement
|
|
{
|
|
public function render()
|
|
{
|
|
return 'this is a text element';
|
|
}
|
|
}
|