From: Mikael Nordfeldth Date: Mon, 23 Jun 2014 12:16:34 +0000 (+0200) Subject: RSVP stricter typing X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=658c6ab9a84baabce3bec07d096e436451f8873e;p=quix0rs-gnu-social.git RSVP stricter typing --- diff --git a/plugins/Event/classes/RSVP.php b/plugins/Event/classes/RSVP.php index 926f6b7d08..7ca29b280e 100644 --- a/plugins/Event/classes/RSVP.php +++ b/plugins/Event/classes/RSVP.php @@ -224,12 +224,12 @@ class RSVP extends Managed_DataObject return $notice; } - static function fromNotice($notice) + static function fromNotice(Notice $notice) { return RSVP::getKV('uri', $notice->uri); } - static function forEvent($event) + static function forEvent(Happening $event) { $keypart = sprintf('rsvp:for-event:%s', $event->id);