17 lines
219 B
PHP
17 lines
219 B
PHP
|
<?php
|
||
|
|
||
|
namespace common\modules\abiturient\models\interfaces;
|
||
|
|
||
|
use common\modules\abiturient\models\bachelor\BachelorApplication;
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
interface ApplicationConnectedInterface
|
||
|
{
|
||
|
|
||
|
public function getApplication();
|
||
|
|
||
|
}
|