13 lines
225 B
PHP
13 lines
225 B
PHP
|
<?php
|
||
|
|
||
|
namespace common\modules\abiturient\models\interfaces;
|
||
|
|
||
|
interface ExamInterface{
|
||
|
|
||
|
const STATUS_NOTVERIFIED = 0;
|
||
|
const STATUS_VERIFIED = 1;
|
||
|
const STATUS_UNSTAGED = 2;
|
||
|
const STATUS_STAGED = 0;
|
||
|
|
||
|
}
|