proxitok/app/Models/ItemTemplate.php
2022-01-31 00:02:52 +01:00

15 lines
291 B
PHP

<?php
namespace App\Models;
/**
* Base for templates with item (only /video at the time)
*/
class ItemTemplate extends BaseTemplate {
public object $item;
function __construct(string $title, object $item) {
parent::__construct($title);
$this->item = $item;
}
}