. * * @file * @ingroup Skins */ namespace Skins\Chameleon\Components; /** * The Silent class. * * This component may be used as a placeholder during development. * * It is also used internally. * * @author Stephan Gambke * @since 1.1 * @ingroup Skins */ class Silent extends Component { /** * Builds the HTML code for this component * * @return String the HTML code */ public function getHtml() { return ''; } }