From: Mikael Nordfeldth Date: Sun, 27 Mar 2016 13:01:08 +0000 (+0200) Subject: Matching inherited function definition X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=97d177f42ab1e02eebb0d2ea436f09438ffc1128;p=quix0rs-gnu-social.git Matching inherited function definition --- diff --git a/actions/selftag.php b/actions/selftag.php index b886c3d9f7..2df1a29253 100644 --- a/actions/selftag.php +++ b/actions/selftag.php @@ -158,9 +158,9 @@ class SelftagAction extends Action class SelfTagProfileList extends ProfileList { - function newListItem($profile) + function newListItem(Profile $target) { - return new SelfTagProfileListItem($profile, $this->action); + return new SelfTagProfileListItem($target, $this->action); } }