proxitok/views/models/FollowingTemplate.php

15 lines
297 B
PHP
Raw Normal View History

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