proxitok/app/Models/FullTemplate.php

20 lines
396 B
PHP
Raw Normal View History

2022-05-24 12:10:41 +00:00
<?php
namespace App\Models;
2022-11-26 22:51:45 +00:00
use TikScraper\Models\Feed;
use TikScraper\Models\Info;
2022-05-24 12:10:41 +00:00
/**
* Base for templates with both info and feed
*/
class FullTemplate extends BaseTemplate {
2022-11-26 22:51:45 +00:00
public Info $info;
public Feed $feed;
2022-05-24 12:10:41 +00:00
2022-11-26 22:51:45 +00:00
function __construct(string $title, Info $info, Feed $feed) {
2022-05-24 12:10:41 +00:00
parent::__construct($title);
2022-11-26 22:51:45 +00:00
$this->info = $info;
$this->feed = $feed;
2022-05-24 12:10:41 +00:00
}
}