From 5f6e9200c0b9b925ac6ee56bd8b6559f6d3ce2ce Mon Sep 17 00:00:00 2001 From: Kevin Locke Date: Mon, 22 Aug 2016 15:45:34 -0600 Subject: [PATCH] Match wpsql_ping formatting to adjacent functions Although I am not a big fan of the existing style, I think consistency adds enough value to justify keeping the formatting as standardized as possible. Signed-off-by: Kevin Locke --- pg4wp/driver_pgsql.php | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pg4wp/driver_pgsql.php b/pg4wp/driver_pgsql.php index e3924f2..ea73f87 100644 --- a/pg4wp/driver_pgsql.php +++ b/pg4wp/driver_pgsql.php @@ -25,12 +25,9 @@ $GLOBALS['pg4wp_last_insert'] = ''; $GLOBALS['pg4wp_connstr'] = ''; $GLOBALS['pg4wp_conn'] = false; - - - function wpsql_ping($conn) { - return(pg_ping($conn)); - } + function wpsql_ping($conn) + { return pg_ping($conn); } function wpsql_num_rows($result) { return pg_num_rows($result); } function wpsql_numrows($result)