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