xref: /dokuwiki/inc/Menu/MenuInterface.php (revision d9156e4d28b707baa0379e1d24e1ce262a0d2c1e)
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