/**
  *
  * Generates a pin and pushes it to a user.
  */
 public function pushPin()
 {
     if (!$this->pin) {
         $this->generatePin();
     }
     $pusher = new Pusher();
     $pusher->pushToUser($this->userToken, $this->pin);
 }