Ejemplo n.º 1
0
 /**
  * Create a nonce.
  * 
  * This method is static and can be called publicly.
  * 
  * @since    1.1
  * 
  * @param    string    $action Nonce action
  * 
  * @return   string    Newly created nonce
  */
 public static function create($action = -1)
 {
     $nonce = new LunaNonces($action);
     return $nonce->_create();
 }