Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
18 | public function __construct($options) |
||
19 | { |
||
20 | $resolver = new OptionsResolver(); |
||
21 | $resolver->setRequired('lat'); |
||
22 | $resolver->setRequired('long'); |
||
23 | $resolver->addAllowedTypes('lat', array('float', 'int')); |
||
24 | $resolver->addAllowedTypes('long', array('float', 'int')); |
||
25 | $this->options = $resolver->resolve($options); |
||
26 | } |
||
27 | |||
44 |