lint: fix php
parent
91697b3523
commit
6a3fda1e0b
|
@ -293,7 +293,7 @@ class PlacesSetup extends Command
|
||||||
protected function detectGisType()
|
protected function detectGisType()
|
||||||
{
|
{
|
||||||
// Detect database type
|
// Detect database type
|
||||||
$platform = strtolower(get_class($this->connection->getDatabasePlatform()));
|
$platform = strtolower(\get_class($this->connection->getDatabasePlatform()));
|
||||||
|
|
||||||
// Test MySQL-like support in databse
|
// Test MySQL-like support in databse
|
||||||
if (str_contains($platform, 'mysql') || str_contains($platform, 'mariadb')) {
|
if (str_contains($platform, 'mysql') || str_contains($platform, 'mariadb')) {
|
||||||
|
@ -304,6 +304,7 @@ class PlacesSetup extends Command
|
||||||
}
|
}
|
||||||
$this->output->writeln('MySQL-like support detected!');
|
$this->output->writeln('MySQL-like support detected!');
|
||||||
$this->gisType = GIS_TYPE_MYSQL;
|
$this->gisType = GIS_TYPE_MYSQL;
|
||||||
|
|
||||||
return;
|
return;
|
||||||
} catch (\Exception $e) {
|
} catch (\Exception $e) {
|
||||||
$this->output->writeln('No MySQL-like support detected');
|
$this->output->writeln('No MySQL-like support detected');
|
||||||
|
@ -319,6 +320,7 @@ class PlacesSetup extends Command
|
||||||
}
|
}
|
||||||
$this->output->writeln('Postgres native geometry support detected!');
|
$this->output->writeln('Postgres native geometry support detected!');
|
||||||
$this->gisType = GIS_TYPE_POSTGRES;
|
$this->gisType = GIS_TYPE_POSTGRES;
|
||||||
|
|
||||||
return;
|
return;
|
||||||
} catch (\Exception $e) {
|
} catch (\Exception $e) {
|
||||||
$this->output->writeln('No Postgres native geometry support detected');
|
$this->output->writeln('No Postgres native geometry support detected');
|
||||||
|
|
Loading…
Reference in New Issue