12 lines
233 B
PHP
12 lines
233 B
PHP
|
<?php
|
||
|
|
||
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
||
|
|
||
|
class SubscribersMiniList extends ProfileMiniList
|
||
|
{
|
||
|
public function newListItem(Profile $profile)
|
||
|
{
|
||
|
return new SubscribersMiniListItem($profile, $this->action);
|
||
|
}
|
||
|
}
|