proxitok/app/Models/FeedTemplate.php

17 lines
292 B
PHP
Raw Permalink Normal View History

<?php
2022-01-30 18:02:52 -05:00
namespace App\Models;
2023-01-26 13:21:14 -05:00
use TikScraper\Models\Feed;
/**
* Base for templates with a feed
*/
class FeedTemplate extends BaseTemplate {
2023-01-26 13:21:14 -05:00
public Feed $feed;
2023-01-26 13:21:14 -05:00
function __construct(string $title, Feed $feed) {
parent::__construct($title);
2023-01-26 13:21:14 -05:00
$this->feed = $feed;
}
}