1<?php
2/* Copyright (c) 1998-2018 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4/**
5 * @author  Niels Theen <ntheen@databay.de>
6 */
7class ilCertificateFileUtilsHelper
8{
9    /**
10     * @param $targetFilename
11     * @return string
12     * @throws ilFileUtilsException
13     */
14    public function getValidFilename($targetFilename)
15    {
16        return ilFileUtils::getValidFilename($targetFilename);
17    }
18}
19