From 28b67d24e4164d4da511af42f26170ddc7376c90 Mon Sep 17 00:00:00 2001 From: Igor Wiedler Date: Thu, 29 Mar 2012 08:43:42 +0200 Subject: [PATCH] [feature/event-dispatcher] Fix docblock in phpbb_event_data PHPBB3-10732 --- phpBB/includes/event/data.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/phpBB/includes/event/data.php b/phpBB/includes/event/data.php index 5780ddbfff..47cb2d5a30 100644 --- a/phpBB/includes/event/data.php +++ b/phpBB/includes/event/data.php @@ -36,11 +36,11 @@ class phpbb_event_data extends Event implements ArrayAccess return $this->data; } - /* - * Returns data filtered to only include specified keys. - * - * This effectively discards any keys added to data by hooks. - */ + /** + * Returns data filtered to only include specified keys. + * + * This effectively discards any keys added to data by hooks. + */ public function get_data_filtered($keys) { return array_intersect_key($this->data, array_flip($keys));