]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/subscribersminilist.php
Subscriber lists to separate files and also Profile typing
[quix0rs-gnu-social.git] / lib / subscribersminilist.php
1 <?php
2
3 if (!defined('GNUSOCIAL')) { exit(1); }
4
5 class SubscribersMiniList extends ProfileMiniList
6 {
7     public function newListItem(Profile $profile)
8     {
9         return new SubscribersMiniListItem($profile, $this->action);
10     }
11 }