![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mautic.corals.io/vendor/knplabs/knp-menu/src/Knp/Menu/Provider/ |
<?php namespace Knp\Menu\Provider; use Knp\Menu\ItemInterface; use Psr\Container\ContainerInterface; /** * A menu provider getting the menus from a PSR-11 container. * * This menu provider does not support using options, as it cannot pass them to the container * to alter the menu building. Use a different provider in case you need support for options. */ class PsrProvider implements MenuProviderInterface { public function __construct(private ContainerInterface $container) { } public function get(string $name, array $options = []): ItemInterface { if (!$this->container->has($name)) { throw new \InvalidArgumentException(\sprintf('The menu "%s" is not defined.', $name)); } return $this->container->get($name); } public function has(string $name, array $options = []): bool { return $this->container->has($name); } }