for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace backend\widgets\navbar;
use yii\bootstrap\Widget;
/**
* Class MessagesWidget
* @package backend\widgets\search
*/
class MessagesWidget extends Widget
{
* @var bool
public $status = true;
public $image = '';
* @inheritdoc
public function run()
if ($this->status === true) {
echo $this->render('messagesWidget', ['image' => $this->image]);
}