From 8aa70ca88088c38429d4c9b613e2f38af5406a9a Mon Sep 17 00:00:00 2001 From: Victor Westerlund Date: Sun, 9 Feb 2025 10:12:52 +0100 Subject: [PATCH] fix: classname for href DELETE endpoint --- endpoints/href/DELETE.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/endpoints/href/DELETE.php b/endpoints/href/DELETE.php index c437ec4..1882c6b 100644 --- a/endpoints/href/DELETE.php +++ b/endpoints/href/DELETE.php @@ -9,7 +9,7 @@ require_once Path::root("src/Database/Database.php"); require_once Path::root("src/Database/Tables/Href/Href.php"); - class POST_Href extends Database { + class DELETE_Href extends Database { protected Ruleset $ruleset; public function __construct() { @@ -36,4 +36,4 @@ return $delete ? new Response($_GET[HrefTable::ID->value]) : parent::db_error(); } - } \ No newline at end of file + }