From: Mikael Nordfeldth Date: Fri, 9 Oct 2015 13:45:23 +0000 (+0200) Subject: You don't have to push objects as references X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=2d3f1ef5208addf6c048c4efe5bd85a0d681c793;p=quix0rs-gnu-social.git You don't have to push objects as references --- diff --git a/lib/activityhandlerplugin.php b/lib/activityhandlerplugin.php index c403e55a93..8c5d045264 100644 --- a/lib/activityhandlerplugin.php +++ b/lib/activityhandlerplugin.php @@ -436,14 +436,13 @@ abstract class ActivityHandlerPlugin extends Plugin /** * Handle object posted via AtomPub * - * @param Activity &$activity Activity that was posted + * @param Activity $activity Activity that was posted * @param Profile $scoped Profile of user posting * @param Notice &$notice Resulting notice * * @return boolean hook value */ - // FIXME: Make sure we can really do strong Notice typing with a $notice===null without having =null here - public function onStartAtomPubNewActivity(Activity &$activity, Profile $scoped, Notice &$notice) + public function onStartAtomPubNewActivity(Activity $activity, Profile $scoped, Notice &$notice=null) { if (!$this->isMyActivity($activity)) { return true;