proxitok/app/Models/FullTemplate.php

17 lines
304 B
PHP
Raw Normal View History

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