15 lines
242 B
PHP
15 lines
242 B
PHP
|
<?php
|
||
|
namespace Views\Models;
|
||
|
|
||
|
/**
|
||
|
* Base for all templates, needs a Title to set
|
||
|
*/
|
||
|
class BaseTemplate {
|
||
|
public string $title;
|
||
|
public string $version;
|
||
|
|
||
|
function __construct(string $title) {
|
||
|
$this->title = $title;
|
||
|
}
|
||
|
}
|