2022-01-25 11:20:11 -05:00
|
|
|
<?php
|
2022-01-30 18:02:52 -05:00
|
|
|
namespace App\Models;
|
2022-01-25 11:20:11 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Exclusive for /following
|
|
|
|
*/
|
|
|
|
class FollowingTemplate extends FeedTemplate {
|
|
|
|
public array $following;
|
|
|
|
|
|
|
|
function __construct(array $following, object $feed) {
|
|
|
|
parent::__construct('Following', $feed);
|
|
|
|
$this->following = $following;
|
|
|
|
}
|
|
|
|
}
|