Skip to content

Commit c7f4f5d

Browse files
author
Andreas Streichardt
committed
Call time pass by reference is deprecated
1 parent 3dcf5ff commit c7f4f5d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/triagens/Avocado/HttpHelper.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,8 @@ public static function transfer($socket, $request) {
133133
public static function createConnection(ConnectionOptions $options) {
134134
$fp = @fsockopen($options[ConnectionOptions::OPTION_HOST],
135135
$options[ConnectionOptions::OPTION_PORT],
136-
&$number,
137-
&$message,
136+
$number,
137+
$message,
138138
$options[ConnectionOptions::OPTION_TIMEOUT]);
139139
if (!$fp) {
140140
throw new ConnectException($message, $number);

0 commit comments

Comments
 (0)