Skip to content

Commit dbd1a76

Browse files
committed
Fix white space errors
1 parent 021456b commit dbd1a76

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

sapi/cli/tests/php_cli_server_ipv4_error_message.phpt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ if (substr(PHP_OS, 0, 3) == 'WIN') {
1414

1515
$descriptorspec = array(
1616
0 => array("pipe", "r"),
17-
1 => array("pipe", "w"),
17+
1 => array("pipe", "w"),
1818
2 => array("pipe", "w")
1919
);
2020

@@ -26,13 +26,13 @@ $process = proc_open(
2626

2727
if (is_resource($process)) {
2828
usleep(100000);
29-
29+
3030
$stderr = stream_get_contents($pipes[2]);
31-
31+
3232
fclose($pipes[0]);
3333
fclose($pipes[1]);
3434
fclose($pipes[2]);
35-
35+
3636
proc_terminate($process);
3737
proc_close($process);
3838

0 commit comments

Comments
 (0)