Typing to Profile

This commit is contained in:
Mikael Nordfeldth 2016-01-06 01:25:00 +01:00
parent e577e883f4
commit da2f179ae9

View File

@ -27,9 +27,7 @@
* @link http://status.net/ * @link http://status.net/
*/ */
if (!defined('STATUSNET') && !defined('LACONICA')) { if (!defined('GNUSOCIAL')) { exit(1); }
exit(1);
}
/** /**
* Widget to show a list of subscriptions * Widget to show a list of subscriptions
@ -46,14 +44,14 @@ class SubscriptionList extends ProfileList
/** Owner of this list */ /** Owner of this list */
var $owner = null; var $owner = null;
function __construct($profile, $owner=null, $action=null) public function __construct(Profile $profile, $owner=null, $action=null)
{ {
parent::__construct($profile, $action); parent::__construct($profile, $action);
$this->owner = $owner; $this->owner = $owner;
} }
function newListItem($profile) public function newListItem(Profile $profile)
{ {
return new SubscriptionListItem($profile, $this->owner, $this->action); return new SubscriptionListItem($profile, $this->owner, $this->action);
} }