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 <kevin@kevinlocke.name>
This commit is contained in:
Kevin Locke
2016-08-22 15:45:34 -06:00
parent 8a80acdf6e
commit 5f6e9200c0

View File

@ -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)