mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-03-12 22:04:07 +00:00
make phpcs happy
This commit is contained in:
@@ -255,7 +255,6 @@ class Geocode
|
||||
) {
|
||||
$this->oPlaceLookup->setAddressAdminLevels(true);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public function setQueryFromParams($oParams)
|
||||
|
||||
@@ -277,7 +277,6 @@ class ReverseGeocode
|
||||
);
|
||||
|
||||
if ($aPlace) {
|
||||
|
||||
$iDistance = $aPlace['distance'];
|
||||
$iPlaceID = $aPlace['place_id'];
|
||||
$oResult = new Result($iPlaceID);
|
||||
|
||||
@@ -62,7 +62,10 @@ if ($aCMDResult['import-data'] || $aCMDResult['all']) {
|
||||
|
||||
|
||||
// by default, use all but one processor, but never more than 15.
|
||||
$iInstances = isset($aCMDResult['threads'])?$aCMDResult['threads']:(min(16,getProcessorCount())-1);
|
||||
$iInstances = isset($aCMDResult['threads'])
|
||||
? $aCMDResult['threads']
|
||||
: (min(16, getProcessorCount()) - 1);
|
||||
|
||||
if ($iInstances < 1) {
|
||||
$iInstances = 1;
|
||||
warn("resetting threads to $iInstances");
|
||||
|
||||
Reference in New Issue
Block a user