remove unnecessayly nested ifs

Found by Sonarqube.
This commit is contained in:
Sarah Hoffmann
2021-07-11 19:11:37 +02:00
parent 1cdc30c5e8
commit d933ead2b5
3 changed files with 15 additions and 18 deletions

View File

@@ -79,14 +79,13 @@ class AddressDetails
$sName = $aLine['housenumber'];
}
if (isset($sName)) {
if (!isset($aAddress[$sTypeLabel])
|| $aLine['class'] == 'place'
if (isset($sName)
&& (!isset($aAddress[$sTypeLabel])
|| $aLine['class'] == 'place')
) {
$aAddress[$sTypeLabel] = $sName;
}
}
}
return $aAddress;
}

View File

@@ -817,11 +817,9 @@ class Geocode
// No results? Done
if (empty($aResults)) {
if ($this->bFallback) {
if ($this->fallbackStructuredQuery()) {
if ($this->bFallback && $this->fallbackStructuredQuery()) {
return $this->lookup();
}
}
return array();
}

View File

@@ -90,8 +90,9 @@ class ParameterParser
$aLanguages = array();
$sLangString = $this->getString('accept-language', $sFallback);
if ($sLangString) {
if (preg_match_all('/(([a-z]{1,8})([-_][a-z]{1,8})?)\s*(;\s*q\s*=\s*(1|0\.[0-9]+))?/i', $sLangString, $aLanguagesParse, PREG_SET_ORDER)) {
if ($sLangString
&& preg_match_all('/(([a-z]{1,8})([-_][a-z]{1,8})?)\s*(;\s*q\s*=\s*(1|0\.[0-9]+))?/i', $sLangString, $aLanguagesParse, PREG_SET_ORDER)
) {
foreach ($aLanguagesParse as $iLang => $aLanguage) {
$aLanguages[$aLanguage[1]] = isset($aLanguage[5])?(float)$aLanguage[5]:1 - ($iLang/100);
if (!isset($aLanguages[$aLanguage[2]])) {
@@ -100,7 +101,6 @@ class ParameterParser
}
arsort($aLanguages);
}
}
if (empty($aLanguages) && CONST_Default_Language) {
$aLanguages[CONST_Default_Language] = 1;
}