diff options
| author | Nikita Popov <nikita.ppv@gmail.com> | 2020-02-03 22:52:20 +0100 |
|---|---|---|
| committer | Nikita Popov <nikita.ppv@gmail.com> | 2020-02-03 22:52:20 +0100 |
| commit | f8d795820e780a6322e054c26c581570613c14f0 (patch) | |
| tree | 99d3ae01ce564752807341c5743863b4c92513f8 /ext/mysqli/tests/mysqli_debug_ini.phpt | |
| parent | d2cb200e10ada6fa44c54a29292bb4665728fff0 (diff) | |
| download | php-git-f8d795820e780a6322e054c26c581570613c14f0.tar.gz | |
Reindent phpt files
Diffstat (limited to 'ext/mysqli/tests/mysqli_debug_ini.phpt')
| -rw-r--r-- | ext/mysqli/tests/mysqli_debug_ini.phpt | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/ext/mysqli/tests/mysqli_debug_ini.phpt b/ext/mysqli/tests/mysqli_debug_ini.phpt index f1a37bf882..3416e9a9e2 100644 --- a/ext/mysqli/tests/mysqli_debug_ini.phpt +++ b/ext/mysqli/tests/mysqli_debug_ini.phpt @@ -29,24 +29,24 @@ else mysqlnd.debug="t:O,/tmp/mysqli_debug_phpt.trace" --FILE-- <?php - require_once('connect.inc'); - require_once('table.inc'); + require_once('connect.inc'); + require_once('table.inc'); - var_dump(ini_get('mysqlnd.debug')); + var_dump(ini_get('mysqlnd.debug')); - $trace_file = '/tmp/mysqli_debug_phpt.trace'; - clearstatcache(); - if (!file_exists($trace_file)) - printf("[003] Trace file '%s' has not been created\n", $trace_file); - if (filesize($trace_file) < 50) - printf("[004] Trace file '%s' is very small. filesize() reports only %d bytes. Please check.\n", - $trace_file, - filesize($trace_file)); + $trace_file = '/tmp/mysqli_debug_phpt.trace'; + clearstatcache(); + if (!file_exists($trace_file)) + printf("[003] Trace file '%s' has not been created\n", $trace_file); + if (filesize($trace_file) < 50) + printf("[004] Trace file '%s' is very small. filesize() reports only %d bytes. Please check.\n", + $trace_file, + filesize($trace_file)); - mysqli_close($link); - unlink($trace_file); + mysqli_close($link); + unlink($trace_file); - print "done!"; + print "done!"; ?> --EXPECT-- string(32) "t:O,/tmp/mysqli_debug_phpt.trace" |
