Codestyle + check trustedproxies
[dokuwiki.git] / inc / Menu / MenuInterface.php
blob52e06a256112ea345fb0d2c06fb9981bdda3bc62
1 <?php
3 namespace dokuwiki\Menu;
5 use dokuwiki\Menu\Item\AbstractItem;
7 /**
8 * Interface MenuInterface
10 * Defines what a Menu provides
12 interface MenuInterface
14 /**
15 * Get the list of action items in this menu
17 * @return AbstractItem[]
19 public function getItems();