1<?php
2/* Copyright (c) 1998-2018 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4/**
5 * Interface ilObjectCustomIcon
6 */
7interface ilObjectCustomIconPresenter
8{
9    /**
10     * @return bool
11     */
12    public function exists() : bool;
13
14    /**
15     * @return string
16     */
17    public function getFullPath() : string;
18}
19