/**
  * @description Destroys an CRSF object
  * @param string $CSRF_OBJECT_NAME
  * @return bool
  */
 public static final function destroy_CSRF_Object($CSRF_OBJECT_NAME = false)
 {
     if (!$CSRF_OBJECT_NAME) {
         Exception::cast('FAILURE: The CSRF_OBJECT_NAME input is null when calling the destroy_CSRF_Object() function.', 500);
     }
     # Create object in
     if (isset($_SESSION["csrf_object_{$CSRF_OBJECT_NAME}"])) {
     }
     unset($_SESSION["csrf_object_{$CSRF_OBJECT_NAME}"]);
     return true;
 }