Ejemplo n.º 1
0
 /**
  * Finds user by [[username]]
  *
  * @return User|null
  */
 public function getUser()
 {
     if ($this->_user === false) {
         $this->_user = User::findByUsername($this->username);
     }
     return $this->_user;
 }
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getIdUserUpdated()
 {
     return $this->hasOne(User::className(), ['id' => 'id_user_updated']);
 }