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 a complete element without escaping the $content
* @package Aura.Html
class ElementRaw extends AbstractElement
{
* Returns any kind of complete HTML element with attributes.
* @param string $tag The tag to generate.
* @param string $content The content of the element.
* @param array $attr Attributes for the tag.
* @return string
public function __invoke($tag, $content, array $attr = array())
return $this->raw($tag, $content, $attr);
}