Implement creator studio and upload updates
This commit is contained in:
19
app/Services/Sitemaps/GoogleNewsSitemapUrl.php
Normal file
19
app/Services/Sitemaps/GoogleNewsSitemapUrl.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?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,
|
||||
) {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user