12 lines
295 B
PHP
12 lines
295 B
PHP
|
<?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');
|
||
|
}
|
||
|
}
|