1
0
Fork 0
mirror of synced 2025-03-29 11:19:50 +03:00

fix indentation

This commit is contained in:
Steve Müller 2015-01-27 10:02:57 +01:00
parent 5795d53ca7
commit 75e41eefb5

View file

@ -64,19 +64,19 @@ class TestUtil
private static function hasRequiredConnectionParams() private static function hasRequiredConnectionParams()
{ {
return isset( return isset(
$GLOBALS['db_type'], $GLOBALS['db_type'],
$GLOBALS['db_username'], $GLOBALS['db_username'],
$GLOBALS['db_password'], $GLOBALS['db_password'],
$GLOBALS['db_host'], $GLOBALS['db_host'],
$GLOBALS['db_name'], $GLOBALS['db_name'],
$GLOBALS['db_port'] $GLOBALS['db_port']
) )
&& isset( && isset(
$GLOBALS['tmpdb_type'], $GLOBALS['tmpdb_type'],
$GLOBALS['tmpdb_username'], $GLOBALS['tmpdb_username'],
$GLOBALS['tmpdb_password'], $GLOBALS['tmpdb_password'],
$GLOBALS['tmpdb_host'], $GLOBALS['tmpdb_host'],
$GLOBALS['tmpdb_port'] $GLOBALS['tmpdb_port']
); );
} }