for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace hiqdev\thememanager\widgets;
use Yii;
use yii\base\Widget;
use yii\helpers\Html;
class PoweredBy extends Widget
{
public $options = [];
public function run()
return $this->render('PoweredBy', array_merge(Yii::$app->params, [
'options' => $this->options,
]));
}