19 lines
412 B
PHP
19 lines
412 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Services\Sitemaps;
|
|
|
|
use DateTimeInterface;
|
|
|
|
final class GoogleNewsSitemapUrl
|
|
{
|
|
public function __construct(
|
|
public readonly string $loc,
|
|
public readonly string $title,
|
|
public readonly DateTimeInterface $publicationDate,
|
|
public readonly string $publicationName,
|
|
public readonly string $publicationLanguage,
|
|
) {
|
|
}
|
|
} |