Exemplo n.º 1
0
 /**
  * Finds user by [[phone]]
  *
  * @return User|null
  */
 public function getUser()
 {
     if ($this->_user === false) {
         $this->_user = User::findByPhone($this->phone);
     }
     return $this->_user;
 }