| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | protected function createFormInstance(ContainerInterface $container, $name, array $options = null) { |
||
| 29 | /* @var \Geo\Options\ModuleOptions $options */ |
||
| 30 | $options = $container->get('Geo/Options'); |
||
| 31 | |||
| 32 | $fs = new BaseFieldset( |
||
| 33 | [ |
||
| 34 | 'location_engine_type' => $options->getPlugin(), |
||
| 35 | ] |
||
| 36 | ); |
||
| 37 | |||
| 38 | $fs->setLocationEngineType($options->getPlugin()); |
||
| 39 | |||
| 40 | return $fs; |
||
| 41 | } |
||
| 42 | } |
||
| 43 |