for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace WebinoViewLib\Feature;
use WebinoDomLib\Dom\Config\AbstractSpecConfig;
/**
* Class TableView
*/
class TableView extends AbstractSpecConfig
{
* {@inheritdoc}
public function __construct($name)
parent::__construct($name);
$this->setOptions([
'component' => self::class,
]);
}
* @param string $html Valid XHTML code.
* @return $this
public function setHtml($html)
$this->mergeArray(['html' => $html]);
return $this;