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