From 4179ee10e927f4408e688418bf4a45d4e3fafcad Mon Sep 17 00:00:00 2001 From: Lewis Dale Date: Tue, 14 Mar 2023 09:17:00 +0000 Subject: [PATCH] Remove "comment" webmention type, as it is the same as a reply --- src/Models/MentionType.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Models/MentionType.php b/src/Models/MentionType.php index 95d40b6..9c94792 100644 --- a/src/Models/MentionType.php +++ b/src/Models/MentionType.php @@ -12,7 +12,6 @@ enum MentionType { { return match ($this) { MentionType::Like => "like", - MentionType::Comment => "comment", MentionType::Reply => "reply", MentionType::Mention => "mention" }; @@ -22,7 +21,6 @@ enum MentionType { { switch($string) { case "like": return MentionType::Like; - case "comment": return MentionType::Comment; case "reply": return MentionType::Reply; default: return MentionType::Mention; }