X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/52922397147d8e7466147edfb7cbdaffc6f34498..3a2ddbe2e0f3320b9f21ae6f299d10477553d13d:/lib/ParameterParser.php diff --git a/lib/ParameterParser.php b/lib/ParameterParser.php index cb03c6cc..32a848b9 100644 --- a/lib/ParameterParser.php +++ b/lib/ParameterParser.php @@ -118,4 +118,15 @@ class ParameterParser $aLangPrefOrder['type'] = 'type'; return $aLangPrefOrder; } + + public function hasSetAny($aParamNames) + { + foreach ($aParamNames as $sName) { + if ($this->getBool($sName)) { + return true; + } + } + + return false; + } }