15 lines
295 B
PHP
15 lines
295 B
PHP
<?php
|
|
namespace App\Models;
|
|
|
|
/**
|
|
* Exclusive for /following
|
|
*/
|
|
class FollowingTemplate extends FeedTemplate {
|
|
public array $following;
|
|
|
|
function __construct(array $following, object $feed) {
|
|
parent::__construct('Following', $feed);
|
|
$this->following = $following;
|
|
}
|
|
}
|