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