/** * StyleManager constructor. * * @param ContainerInterface|null $container */ public function __construct(ContainerInterface $container = null) { parent::__construct($container, 'styles'); }
/** * StyleManager constructor. * * @param ContainerInterface|null $container * @throws \Symfony\Component\DependencyInjection\Exception\ServiceCircularReferenceException * @throws \Symfony\Component\DependencyInjection\Exception\ServiceNotFoundException */ public function __construct(ContainerInterface $container = null) { parent::__construct($container, 'stylemaps'); $this->styleManager = $this->container->get('mapbender.style.manager'); }
/** * QueryManager constructor. * * @param ContainerInterface|null $container */ public function __construct(ContainerInterface $container = null) { parent::__construct($container, "queries"); }