Merge remote-tracking branch 'origin/master'

This commit is contained in:
iIronside
2023-10-12 11:34:58 +03:00
4 changed files with 170 additions and 24 deletions

View File

@ -68,6 +68,14 @@ class ProfileService
return $searchModel->byParams();
}
public static function getProfileById($id): ?array
{
$searchModel = new ProfileSearchForm();
$searchModel->id = $id;
return $searchModel->byId();
}
/**
* @throws ServerErrorHttpException
*/