You don't have to push objects as references
This commit is contained in:
parent
0bdbb32f3b
commit
2d3f1ef520
@ -436,14 +436,13 @@ abstract class ActivityHandlerPlugin extends Plugin
|
|||||||
/**
|
/**
|
||||||
* Handle object posted via AtomPub
|
* 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 Profile $scoped Profile of user posting
|
||||||
* @param Notice &$notice Resulting notice
|
* @param Notice &$notice Resulting notice
|
||||||
*
|
*
|
||||||
* @return boolean hook value
|
* @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=null)
|
||||||
public function onStartAtomPubNewActivity(Activity &$activity, Profile $scoped, Notice &$notice)
|
|
||||||
{
|
{
|
||||||
if (!$this->isMyActivity($activity)) {
|
if (!$this->isMyActivity($activity)) {
|
||||||
return true;
|
return true;
|
||||||
|
Loading…
Reference in New Issue
Block a user