]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/subscriptionslist.php
Cannot use NoticeListemItem as type-hint as NoticeListItemAdapter exists.
[quix0rs-gnu-social.git] / lib / subscriptionslist.php
1 <?php
2
3 if (!defined('GNUSOCIAL')) { exit(1); }
4
5 // XXX SubscriptionsList and SubscriptionList are dangerously close
6
7 class SubscriptionsList extends SubscriptionList
8 {
9     function newListItem(Profile $profile)
10     {
11         return new SubscriptionsListItem($profile, $this->owner, $this->action);
12     }
13 }