File tree 2 files changed +6
-1
lines changed
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 1
- Symfony Polyfill / Php80
1
+ Symfony Polyfill / Php81
2
2
========================
3
3
4
4
This component provides features added to PHP 8.1 core:
5
5
6
6
- [ ` array_is_list ` ] ( https://php.net/array_is_list )
7
+ - [ ` MYSQLI_REFRESH_REPLICA ` ] ( https://www.php.net/manual/en/mysqli.constants.php#constantmysqli-refresh-replica ) constant
7
8
8
9
More information can be found in the
9
10
[ main Polyfill README] ( https://github.com/symfony/polyfill/blob/master/README.md ) .
Original file line number Diff line number Diff line change 15
15
return ;
16
16
}
17
17
18
+ if (defined ('MYSQLI_REFRESH_SLAVE ' ) && !defined ('MYSQLI_REFRESH_REPLICA ' )) {
19
+ define ('MYSQLI_REFRESH_REPLICA ' , MYSQLI_REFRESH_SLAVE );
20
+ }
21
+
18
22
if (!function_exists ('array_is_list ' )) {
19
23
function array_is_list (array $ array ): bool { return p \Php81::array_is_list ($ array ); }
20
24
}
You can’t perform that action at this time.
0 commit comments