MOON
Server: Apache
System: Linux u18017238.onlinehome-server.com 3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020 x86_64
User: emblazeone (1003)
PHP: 7.3.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/emblazeone/public_html/lyyt/backend/models/UserAuth.php
<?php
namespace backend\models;

use common\models\Identity;
use common\models\WbpActiveRecord;


/**
 * Owners model
 */

class UserAuth extends WbpActiveRecord
{

    /**
     * @inheritdoc
     */
    public static function tableName()
    {
        return '{{%user_auth}}';
    }

    public function getUser(){
        return $this->hasOne(Identity::className(),['id'=>'user_id']);
    }
}