mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-16 04:46:22 +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';
|
|
}
|
|
}
|