/**
  * Generates a new nonce value with the specified length (default 6).
  *
  * @param int $length The length of the generated nonce, default 6
  * @return string
  */
 public function generateNonce($length = 6)
 {
     return parent::generateNonce($length);
 }