xref: /dokuwiki/inc/Menu/MenuInterface.php (revision 5c46ca3d85d7c2aafb41fc3bea2c559c28e7f1ef)
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     * Get the list of action items in this menu
16     *
17     * @return AbstractItem[]
18     */
19    public function getItems();
20}
21