Implement creator studio and upload updates
This commit is contained in:
15
app/Services/Sitemaps/SitemapIndexItem.php
Normal file
15
app/Services/Sitemaps/SitemapIndexItem.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Services\Sitemaps;
|
||||
|
||||
use DateTimeInterface;
|
||||
|
||||
final readonly class SitemapIndexItem
|
||||
{
|
||||
public function __construct(
|
||||
public string $loc,
|
||||
public ?DateTimeInterface $lastModified = null,
|
||||
) {}
|
||||
}
|
||||
Reference in New Issue
Block a user