summaryrefslogtreecommitdiff
path: root/ext/pgsql/tests/80_bug27597.phpt
diff options
context:
space:
mode:
authorPeter Kokot <peterkokot@gmail.com>2018-10-14 15:37:22 +0200
committerPeter Kokot <peterkokot@gmail.com>2018-10-14 19:43:12 +0200
commit7af945e271d042a4991c9510f78b6ff7ac43ac34 (patch)
tree31d3b7a69f017cd532c5fe31ce1664d426384f82 /ext/pgsql/tests/80_bug27597.phpt
parentafd534f1634e9a5d631afac39a9c9b09b1ba8b33 (diff)
downloadphp-git-7af945e271d042a4991c9510f78b6ff7ac43ac34.tar.gz
Trim trailing whitespace in *.phpt
Diffstat (limited to 'ext/pgsql/tests/80_bug27597.phpt')
-rw-r--r--ext/pgsql/tests/80_bug27597.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/pgsql/tests/80_bug27597.phpt b/ext/pgsql/tests/80_bug27597.phpt
index 7d5b5db890..48f3e33132 100644
--- a/ext/pgsql/tests/80_bug27597.phpt
+++ b/ext/pgsql/tests/80_bug27597.phpt
@@ -1,14 +1,14 @@
--TEST--
Bug #27597 (pg_fetch_array not returning false)
--SKIPIF--
-<?php
+<?php
require_once('skipif.inc');
?>
--FILE--
<?php
require_once(dirname(__FILE__) . '/config.inc');
-
+
$dbh = @pg_connect($conn_str);
if (!$dbh) {
die ("Could not connect to the server");
@@ -23,7 +23,7 @@ for ($i=0; $i<4; $i++) {
function xi_fetch_array($res, $type = PGSQL_ASSOC) {
$a = pg_fetch_array($res, NULL, $type) ;
- return $a ;
+ return $a ;
}
$res = pg_query("SELECT * FROM id");