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

16 lines
521 B
PHP
Raw Normal View History

2024-03-28 09:51:45 +03:00
<?php
namespace common\components\applyingSteps\StepsFactories;
use common\components\applyingSteps\ApplicationApplyingStep;
use common\components\applyingSteps\ApplicationApplyingStepFactory;
class FullPackageStepFactory extends BaseStepsFactory
{
public function getSteps(\common\modules\abiturient\models\bachelor\BachelorApplication &$application): array
{
return [
ApplicationApplyingStepFactory::createStep($application, ApplicationApplyingStep::STEP_FULL_PACKAGE),
];
}
}