17 lines
164 B
PHP
17 lines
164 B
PHP
|
<?php
|
||
|
|
||
|
namespace common\modules\abiturient\models\interfaces;
|
||
|
|
||
|
use common\models\User;
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
interface OwnerConnectedInterface
|
||
|
{
|
||
|
|
||
|
public function getOwner();
|
||
|
|
||
|
}
|