15 lines
183 B
PHP
15 lines
183 B
PHP
|
<?php
|
||
|
|
||
|
final class ArticleDate
|
||
|
{
|
||
|
|
||
|
public string $str;
|
||
|
public array $articles = [];
|
||
|
|
||
|
public function __construct(string $str)
|
||
|
{
|
||
|
$this->str = $str;
|
||
|
}
|
||
|
|
||
|
}
|