public function export()
 {
     if ($this->verified) {
         if (!empty($this->email)) {
             $this->user->setEmail($this->email);
         }
         if (!empty($this->password)) {
             $this->user->setPassword($this->password);
             $this->user->setSalt($this->salt);
         }
     }
 }