* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Sonata\BlockBundle\Menu; /** * @author Christian Gripp */ interface MenuRegistryInterface { /** * Adds a new menu. * * @param string $name */ public function add($name); /** * Returns all alias names. * * @return string[] */ public function getAliasNames(); }