for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace hiqdev\themes\dataserv\widgets;
use hiqdev\themes\dataserv\FaqAsset;
use yii\base\Widget;
class Faq extends Widget
{
public $items = [];
public function run()
FaqAsset::register($this->view);
return $this->render('faq/root', [
'items' => $this->items,
]);
}