for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created for IG Monitoring.
* User: jakim <[email protected]>
* Date: 2019-03-21
*/
namespace app\modules\admin\widgets;
use yii\base\Widget;
class AccountProfileBox extends Widget
{
* @var \app\models\Account
public $model;
public function run()
return $this->render('account-profile-box', [
'model' => $this->model,
]);
}