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

24 lines
261 B
PHP
Executable File

<?php
namespace common\models\interfaces;
interface ArchiveModelInterface extends IArchiveQueryable
{
public function archive(): bool;
public static function getArchivedAtColumn(): string;
public function isArchive(): bool;
}