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

12 lines
295 B
PHP
Raw Normal View History

2024-03-28 09:51:45 +03:00
<?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');
}
}