14 lines
289 B
PHP
Executable File
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 [];
|
|
}
|
|
} |