コード例 #1
0
ファイル: Nonce.php プロジェクト: brienomatty/elmsln
 /**
  * Force expiration of the current nonce.
  *
  * @param string $id The unique nonce ID.
  */
 public static function discardNonce($id)
 {
     $ns = new SessionNamespace($id);
     $ns->unsetAll();
 }