proxitok/app/Models/ItemTemplate.php
Pablo Ferreiro b8f8eb710f
More fixes
2022-03-11 23:24:13 +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;
}
}