xref: /dokuwiki/inc/Menu/MenuInterface.php (revision ab9790ca81397622fcfd58faf56a69b68bd36257)
1<?php
2
3namespace dokuwiki\Menu;
4
5use dokuwiki\Menu\Item\AbstractItem;
6
7/**
8 * Interface MenuInterface
9 *
10 * Defines what a Menu provides
11 */
12interface MenuInterface
13{
14
15    /**
16     * Get the list of action items in this menu
17     *
18     * @return AbstractItem[]
19     */
20    public function getItems();
21}
22