mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-24 09:42:24 +01:00
22 lines
370 B
PHP
22 lines
370 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Structural\Composite;
|
|
|
|
/**
|
|
* Class InputElement
|
|
*/
|
|
class InputElement extends FormElement
|
|
{
|
|
/**
|
|
* renders the input element HTML
|
|
*
|
|
* @param int $indent
|
|
*
|
|
* @return mixed|string
|
|
*/
|
|
public function render($indent = 0)
|
|
{
|
|
return str_repeat(' ', $indent) . '<input type="text" />';
|
|
}
|
|
}
|