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

14 lines
289 B
PHP
Executable File

<?php
namespace common\components\applyingSteps\StepsFactories;
use common\modules\abiturient\models\bachelor\BachelorApplication;
class EmptyStepsFactory extends BaseStepsFactory
{
public function getSteps(BachelorApplication &$application): array
{
return [];
}
}