From fb2db2892641564f752590ed87ef50ef23c6d049 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Menrath?= Date: Fri, 22 Dec 2023 20:27:58 +0100 Subject: [PATCH] fix function name --- includes/transformer/class-base.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/transformer/class-base.php b/includes/transformer/class-base.php index 89c6090..47290bd 100644 --- a/includes/transformer/class-base.php +++ b/includes/transformer/class-base.php @@ -124,12 +124,12 @@ abstract class Base { abstract public function get_label(); /** - * Returns the ActivityStreams 2.0 Object-Type for a Post. + * Returns the ActivityStreams 2.0 Object-Type. * * @see https://www.w3.org/TR/activitystreams-vocabulary/#activity-types * * @return string The Object-Type. */ - abstract protected function get_object_type(); + abstract protected function get_type(); }