proxitok/app/Models/FeedTemplate.php

15 lines
267 B
PHP
Raw Normal View History

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