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 Hidden extends Field
{
public function __construct($name="", $value="")
parent::__construct($name, $value);
$this->setAttribute('type', 'hidden');
}