summaryrefslogtreecommitdiff
path: root/ext/pgsql/tests/03sync_query.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/pgsql/tests/03sync_query.phpt')
-rw-r--r--ext/pgsql/tests/03sync_query.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/pgsql/tests/03sync_query.phpt b/ext/pgsql/tests/03sync_query.phpt
index afb6bb4475..eb8fae084d 100644
--- a/ext/pgsql/tests/03sync_query.phpt
+++ b/ext/pgsql/tests/03sync_query.phpt
@@ -14,19 +14,19 @@ if (!($rows = pg_num_rows($result)))
{
echo "pg_num_row() error\n";
}
-for ($i=0; $i < $rows; $i++)
+for ($i=0; $i < $rows; $i++)
{
pg_fetch_array($result, $i, PGSQL_NUM);
}
-for ($i=0; $i < $rows; $i++)
+for ($i=0; $i < $rows; $i++)
{
pg_fetch_object($result);
}
-for ($i=0; $i < $rows; $i++)
+for ($i=0; $i < $rows; $i++)
{
pg_fetch_row($result, $i);
}
-for ($i=0; $i < $rows; $i++)
+for ($i=0; $i < $rows; $i++)
{
pg_fetch_result($result, $i, 0);
}