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