fibable/lib/Article.php

18 lines
232 B
PHP
Raw Normal View History

2023-09-04 21:13:29 +02:00
<?php
final class Article
{
public string $title;
public string $date;
public string $ref;
public array $tags;
public string $view;
public function render()
{
include $this->view;
}
}