* For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Clastic\MenuBundle\Module; use Clastic\CoreBundle\Module\ModuleInterface; /** * @author Dries De Peuter */ class MenuModule implements ModuleInterface { /** * The name of the module. * * @return string */ public function getName() { return 'Menu'; } /** * The the unique identifier of the module. * * @return string */ public function getIdentifier() { return 'menu'; } }