portal.mkgtu.ru/common/modules/abiturient/models/interfaces/ExamInterface.php

13 lines
225 B
PHP
Executable File

<?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;
}