1
0
Fork 0
mirror of synced 2024-09-29 08:51:28 +13:00

Remove archive

This commit is contained in:
fogelito 2024-06-09 19:36:41 +03:00
parent b23f7b0725
commit 91cc3a3ff5

View file

@ -10,7 +10,6 @@ class Migration extends Event
{
protected string $type = '';
protected ?Document $migration = null;
protected ?Document $archive = null;
public function __construct(protected Connection $connection)
{
@ -83,20 +82,6 @@ class Migration extends Event
'project' => $this->project,
'user' => $this->user,
'migration' => $this->migration,
'archive' => $this->archive
]);
}
/**
* Sets archive
*
* @param Document $archive
* @return self
*/
public function setArchive(Document $archive): self
{
$this->archive = $archive;
return $this;
}
}