8 lines
133 B
PHP
8 lines
133 B
PHP
|
<?php
|
||
|
|
||
|
namespace common\modules\abiturient\models\drafts;
|
||
|
|
||
|
interface IHasRelations
|
||
|
{
|
||
|
public function getRelationsInfo(): array;
|
||
|
}
|