14 lines
167 B
PHP
14 lines
167 B
PHP
|
<?php
|
||
|
|
||
|
|
||
|
namespace common\modules\abiturient\models\interfaces;
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
interface IQuestionnaireValidateModelInterface
|
||
|
{
|
||
|
public function getValidatedName(): string;
|
||
|
}
|