mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-28 18:50:11 +02:00
12 lines
214 B
PHP
12 lines
214 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace DesignPatterns\Structural\Composite;
|
|
|
|
class InputElement implements Renderable
|
|
{
|
|
public function render(): string
|
|
{
|
|
return '<input type="text" />';
|
|
}
|
|
}
|