| Conditions | 2 |
| Paths | 2 |
| Total Lines | 16 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 42 | public function setFormat($format) |
||
| 43 | { |
||
| 44 | $format = strtolower($format); |
||
| 45 | if (!in_array($format, [ |
||
| 46 | 'kml', |
||
| 47 | 'kmz', |
||
| 48 | 'georss' |
||
| 49 | ]) |
||
| 50 | ) { |
||
| 51 | throw new InvalidArgumentValueException( |
||
| 52 | '$format have to be kml, kmz or georss', |
||
| 53 | 23479823479283 |
||
| 54 | ); |
||
| 55 | } |
||
| 56 | $this->format = $format; |
||
| 57 | } |
||
| 58 | } |
||
| 59 |