16 lines
221 B
PHP
16 lines
221 B
PHP
|
<?php
|
||
|
|
||
|
namespace common\modules\abiturient\models\interfaces;
|
||
|
|
||
|
use common\modules\abiturient\models\AbiturientQuestionary;
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
interface QuestionaryConnectedInterface
|
||
|
{
|
||
|
|
||
|
public function getAbiturientQuestionary();
|
||
|
|
||
|
}
|