cs Composite

This commit is contained in:
Dominik Liebler
2013-09-11 16:10:36 +02:00
parent ed3bc7f2ec
commit 45ca69025b
4 changed files with 43 additions and 4 deletions

View File

@@ -2,7 +2,17 @@
namespace DesignPatterns\Composite;
/**
* Class FormElement
*/
abstract class FormElement
{
/**
* renders the elements' code
*
* @param int $indent
*
* @return mixed
*/
abstract public function render($indent = 0);
}