portal.mkgtu.ru/common/components/applyingSteps/StepsFactories/BaseStepsFactory.php

12 lines
295 B
PHP
Executable File

<?php
namespace common\components\applyingSteps\StepsFactories;
abstract class BaseStepsFactory
{
public function getSteps(\common\modules\abiturient\models\bachelor\BachelorApplication &$application): array
{
throw new \yii\base\UserException('Needs implementation');
}
}