Skip to content

Commit f73d492

Browse files
committed
Mark aliases in ext/bz2 as implementation-alias
1 parent 27d957a commit f73d492

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

build/gen_stub.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1345,7 +1345,7 @@ function initPhpParser() {
13451345
}
13461346
}
13471347

1348-
echo implode("\n", $errors), "\n";
1348+
echo implode("\n", $errors);
13491349
if (!empty($errors)) {
13501350
exit(1);
13511351
}

ext/bz2/bz2.stub.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,19 @@ function bzread($bz, int $length = 1024): string|false {}
1313

1414
/**
1515
* @param resource $bz
16-
* @alias fwrite
16+
* @implementation-alias fwrite
1717
*/
1818
function bzwrite($bz, string $data, ?int $length = null): int|false {}
1919

2020
/**
2121
* @param resource $bz
22-
* @alias fflush
22+
* @implementation-alias fflush
2323
*/
2424
function bzflush($bz): bool {}
2525

2626
/**
2727
* @param resource $bz
28-
* @alias fclose
28+
* @implementation-alias fclose
2929
*/
3030
function bzclose($bz): bool {}
3131

ext/bz2/bz2_arginfo.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* This is a generated file, edit the .stub.php file instead.
2-
* Stub hash: 6953f91be31777e4d4e3652f75eec6d968cf636a */
2+
* Stub hash: 0cd7792480671883ebae30ae8358b8f8e3390474 */
33

44
ZEND_BEGIN_ARG_INFO_EX(arginfo_bzopen, 0, 0, 2)
55
ZEND_ARG_INFO(0, file)

0 commit comments

Comments
 (0)