Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattab <matthieu.aubry@gmail.com>2013-10-08 09:31:49 +0400
committermattab <matthieu.aubry@gmail.com>2013-10-08 09:31:49 +0400
commit84eba85074891bfa6a718ae413a1d87ced4f28ca (patch)
tree6df358670aba14da2883dd68434b326edc6a50fe /plugins/UserCountry/LocationProvider/GeoIp/Pecl.php
parent1fa8da9b963e99e08c829fe6491e8ccf2d1054e2 (diff)
Applying phpstorm code style PSR refs #3771
Diffstat (limited to 'plugins/UserCountry/LocationProvider/GeoIp/Pecl.php')
-rwxr-xr-xplugins/UserCountry/LocationProvider/GeoIp/Pecl.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/UserCountry/LocationProvider/GeoIp/Pecl.php b/plugins/UserCountry/LocationProvider/GeoIp/Pecl.php
index c4113fd9e8..aaf1d7a1b7 100755
--- a/plugins/UserCountry/LocationProvider/GeoIp/Pecl.php
+++ b/plugins/UserCountry/LocationProvider/GeoIp/Pecl.php
@@ -269,8 +269,8 @@ class Pecl extends GeoIp
public static function isLocationDatabaseAvailable()
{
return self::isCityDatabaseAvailable()
- || self::isRegionDatabaseAvailable()
- || self::isCountryDatabaseAvailable();
+ || self::isRegionDatabaseAvailable()
+ || self::isCountryDatabaseAvailable();
}
/**
@@ -281,7 +281,7 @@ class Pecl extends GeoIp
public static function isCityDatabaseAvailable()
{
return geoip_db_avail(GEOIP_CITY_EDITION_REV0)
- || geoip_db_avail(GEOIP_CITY_EDITION_REV1);
+ || geoip_db_avail(GEOIP_CITY_EDITION_REV1);
}
/**
@@ -292,7 +292,7 @@ class Pecl extends GeoIp
public static function isRegionDatabaseAvailable()
{
return geoip_db_avail(GEOIP_REGION_EDITION_REV0)
- || geoip_db_avail(GEOIP_REGION_EDITION_REV1);
+ || geoip_db_avail(GEOIP_REGION_EDITION_REV1);
}
/**