for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
*
* This file is part of Aura for PHP.
* @license http://opensource.org/licenses/bsd-license.php BSD
*/
namespace Aura\Html\Helper;
* Helper to generate any void tag.
* @package Aura.Html
class Void extends AbstractHelper
{
* Returns any kind of void tag with attributes.
* @param string $tag The tag to generate.
* @param array $attr Attributes for the tag.
* @return string
public function __invoke($tag, array $attr = array())
return $this->void($tag, $attr);
}