コード例 #1
0
ファイル: StyleManager.php プロジェクト: mapbender/search
 /**
  * StyleManager constructor.
  *
  * @param ContainerInterface|null $container
  */
 public function __construct(ContainerInterface $container = null)
 {
     parent::__construct($container, 'styles');
 }
コード例 #2
0
ファイル: StyleMapManager.php プロジェクト: mapbender/search
 /**
  * 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');
 }
コード例 #3
0
ファイル: QueryManager.php プロジェクト: mapbender/search
 /**
  * QueryManager constructor.
  *
  * @param ContainerInterface|null $container
  */
 public function __construct(ContainerInterface $container = null)
 {
     parent::__construct($container, "queries");
 }