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