Skip to content

Commit

Permalink
PHP 8.4: Fixed 'Implicitly marking parameter $transaction_id as nulla…
Browse files Browse the repository at this point in the history
…ble is deprecated' warning in test runner
  • Loading branch information
derickr committed Mar 22, 2024
1 parent b303190 commit f2ddb53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/debugger/dbgp/dbgpclient.php
Expand Up @@ -106,7 +106,7 @@ function fixFilePath( $m )
return " {$m[1]}=\"file://{$fm[1]}\"";
}

function doRead( $conn, string $transaction_id = null )
function doRead( $conn, ?string $transaction_id = null )
{
stream_set_timeout( $conn, 3 );
do {
Expand Down

0 comments on commit f2ddb53

Please sign in to comment.