for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of dispositif/wikibot application (@github)
* 2019-2023 © Philippe M./Irønie <[email protected]>
* For the full copyright and MIT license information, view the license file.
*/
declare(strict_types=1);
namespace App\Domain\Models;
use DateTimeImmutable;
class WebarchiveDTO
{
public function __construct(
protected string $archiver,
protected string $originalUrl,
protected string $archiveUrl,
protected ?DateTimeImmutable $archiveDate
)
}
public function getArchiver(): string
return $this->archiver;
public function getOriginalUrl(): string
return $this->originalUrl;
public function getArchiveUrl(): string
return $this->archiveUrl;
public function getArchiveDate(): ?DateTimeImmutable
return $this->archiveDate;