Skip to content

Commit

Permalink
Clean up default parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
BenMorel committed Oct 12, 2021
1 parent 508ef09 commit a282fd9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions phpunit-bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@
$pdo->exec('CREATE DATABASE geo_tests_tmp');

$statement = $pdo->query('SELECT version()');
$version = $statement->fetchColumn(0);
$version = $statement->fetchColumn();

echo 'PostgreSQL version: ' . $version . PHP_EOL;

$statement = $pdo->query('SELECT PostGIS_Version()');
$version = $statement->fetchColumn(0);
$version = $statement->fetchColumn();

echo 'PostGIS version: ' . $version . PHP_EOL;

Expand Down

0 comments on commit a282fd9

Please sign in to comment.