20 lines
326 B
PHP
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 = []);
|
|
}
|