for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ntentan\honam\engines\php\helpers\form;
class Html extends Element
{
private $htmlCode;
public function __construct(string $htmlCode)
$this->htmlCode = $htmlCode;
}
public function render(): string
return $this->htmlCode;