Beispiel #1
0
 /**
  * StyleManager constructor.
  *
  * @param ContainerInterface|null $container
  */
 public function __construct(ContainerInterface $container = null)
 {
     parent::__construct($container, 'styles');
 }
Beispiel #2
0
 /**
  * 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');
 }
Beispiel #3
0
 /**
  * QueryManager constructor.
  *
  * @param ContainerInterface|null $container
  */
 public function __construct(ContainerInterface $container = null)
 {
     parent::__construct($container, "queries");
 }