X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/9e6fc8f073a59f38225a6daf72be2d2fc8710fc8..00b1521a6361a5bf57f7d60c0b04f720cd146629:/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; + } }