From 4d4328f3fdce697db6b1e02dcdeedf1d6780a969 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Menrath?= Date: Wed, 25 Sep 2024 14:25:27 +0200 Subject: [PATCH] add missing phpdoc --- includes/activitypub/transformer/class-event.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/includes/activitypub/transformer/class-event.php b/includes/activitypub/transformer/class-event.php index 33a36d0..f870aef 100644 --- a/includes/activitypub/transformer/class-event.php +++ b/includes/activitypub/transformer/class-event.php @@ -160,6 +160,8 @@ abstract class Event extends Post { /** * Compose a human readable formatted start time. + * + * @param bool $is_start_time Whether format the events start or end time. */ protected function format_time( $is_start_time = true ) { $time = $is_start_time ? $this->get_start_time() : $this->get_end_time();