18 lines
232 B
PHP
18 lines
232 B
PHP
|
<?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;
|
||
|
}
|
||
|
|
||
|
}
|