forked from GNUsocial/gnu-social
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			239 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			239 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
if (!defined('GNUSOCIAL')) { exit(1); }
 | 
						|
 | 
						|
class SubscribersList extends SubscriptionList 
 | 
						|
{ 
 | 
						|
    function newListItem(Profile $profile) 
 | 
						|
    { 
 | 
						|
        return new SubscribersListItem($profile, $this->owner, $this->action); 
 | 
						|
    } 
 | 
						|
}
 |