19 lines
194 B
PHP
19 lines
194 B
PHP
|
<?php
|
||
|
|
||
|
namespace common\models\interfaces;
|
||
|
|
||
|
interface IArchiveQueryable
|
||
|
{
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
public static function getArchiveColumn(): string;
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
public static function getArchiveValue();
|
||
|
}
|