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 ilCertificateLPMarksHelper
8{
9    /**
10     * @param int $userId
11     * @param int $objectId
12     * @return mixed
13     */
14    public function lookUpMark(int $userId, int $objectId)
15    {
16        return ilLPMarks::_lookupMark($userId, $objectId);
17    }
18}
19