mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-05-08 23:47:11 +02:00
12 lines
198 B
PHP
12 lines
198 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Structural\Composite;
|
|
|
|
class InputElement implements RenderableInterface
|
|
{
|
|
public function render(): string
|
|
{
|
|
return '<input type="text" />';
|
|
}
|
|
}
|