bubasuma\simplechat\controllers\DefaultController::getUser PHP Method

getUser() public method

public getUser ( ) : User
return bubasuma\simplechat\models\User
    public function getUser()
    {
        if (null === $this->_user) {
            $this->_user = User::findIdentity(\Yii::$app->session->get($this->module->id . '_user', 1));
        }
        return $this->_user;
    }