proxitok/app/Models/FeedTemplate.php

17 lines
292 B
PHP
Raw Permalink Normal View History

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