Files
Chamilo/vendor/knplabs/knp-menu/src/Knp/Menu/FactoryInterface.php
2025-08-14 22:41:49 +02:00

20 lines
326 B
PHP

<?php
namespace Knp\Menu;
/**
* Interface implemented by the factory to create items
*/
interface FactoryInterface
{
/**
* Creates a menu item
*
* @param string $name
* @param array $options
*
* @return ItemInterface
*/
public function createItem($name, array $options = []);
}