for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace fieldwork\components;
class HTMLComponent extends Component
{
private $html;
public function __construct ($slug, $html)
parent::__construct($slug);
$this->html = $html;
}
public function getHTML ($showLabel = true)
return $this->html;
public function isValid ()
return true;