21 lines
202 B
PHP
21 lines
202 B
PHP
|
<?php
|
||
|
|
||
|
|
||
|
namespace common\models\interfaces;
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
interface IFillableReferenceDictionary
|
||
|
{
|
||
|
public static function getReferenceClassToFill(): string;
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
public function fillDictionary();
|
||
|
|
||
|
}
|