portal.mkgtu.ru/common/models/interfaces/ArchiveModelInterface.php

24 lines
261 B
PHP
Raw Permalink Normal View History

2024-03-28 09:51:45 +03:00
<?php
namespace common\models\interfaces;
interface ArchiveModelInterface extends IArchiveQueryable
{
public function archive(): bool;
public static function getArchivedAtColumn(): string;
public function isArchive(): bool;
}