apply StyleCI recommendation

This commit is contained in:
El RIDO 2021-06-09 19:16:22 +02:00
parent a203e6322b
commit 7b2f0ff302
No known key found for this signature in database
GPG key ID: 0F5C940A6BD81F92
3 changed files with 5 additions and 5 deletions

View file

@ -640,7 +640,7 @@ class Database extends AbstractData
'SELECT value FROM ' . self::_sanitizeIdentifier('config') .
' WHERE id = ?', array($key), true
);
return $row ? $row['value']: '';
return $row ? $row['value'] : '';
}
/**