summaryrefslogtreecommitdiff
path: root/ext/mysqli/tests/bug74547.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/mysqli/tests/bug74547.phpt')
-rw-r--r--ext/mysqli/tests/bug74547.phpt14
1 files changed, 7 insertions, 7 deletions
diff --git a/ext/mysqli/tests/bug74547.phpt b/ext/mysqli/tests/bug74547.phpt
index 940357ad04..ff61d78d7a 100644
--- a/ext/mysqli/tests/bug74547.phpt
+++ b/ext/mysqli/tests/bug74547.phpt
@@ -7,17 +7,17 @@ Bug #74547 mysqli::change_user() doesn't accept null as $database argument w/str
?>
--FILE--
<?php
- declare(strict_types=1);
+ declare(strict_types=1);
- require_once("connect.inc");
+ require_once("connect.inc");
- if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))
- printf("[001] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s, socket=%s\n",
- $host, $user, $db, $port, $socket);
+ if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))
+ printf("[001] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s, socket=%s\n",
+ $host, $user, $db, $port, $socket);
- var_dump(mysqli_change_user($link, $user, $passwd, NULL));
+ var_dump(mysqli_change_user($link, $user, $passwd, NULL));
- mysqli_close($link);
+ mysqli_close($link);
?>
===DONE===
--EXPECT--