<?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;
    }

}