File tree 3 files changed +3
-3
lines changed
Zend/tests/readonly_props
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 2
2
Readonly property cannot be reset twice during cloning
3
3
--SKIPIF--
4
4
<?php
5
- if (function_exists ('opcache_get_status ' ) && opcache_get_status ()["jit " ]["enabled " ] ?? false ) {
5
+ if (function_exists ('opcache_get_status ' ) && ( opcache_get_status ()["jit " ]["enabled " ] ?? false ) ) {
6
6
die ('skip Not yet implemented for JIT ' );
7
7
}
8
8
?>
Original file line number Diff line number Diff line change 2
2
Readonly property can be reset once during cloning
3
3
--SKIPIF--
4
4
<?php
5
- if (function_exists ('opcache_get_status ' ) && opcache_get_status ()["jit " ]["enabled " ] ?? false ) {
5
+ if (function_exists ('opcache_get_status ' ) && ( opcache_get_status ()["jit " ]["enabled " ] ?? false ) ) {
6
6
die ('skip Not yet implemented for JIT ' );
7
7
}
8
8
?>
Original file line number Diff line number Diff line change 2
2
__clone() can indirectly modify unlocked readonly properties
3
3
--SKIPIF--
4
4
<?php
5
- if (function_exists ('opcache_get_status ' ) && opcache_get_status ()["jit " ]["enabled " ] ?? false ) {
5
+ if (function_exists ('opcache_get_status ' ) && ( opcache_get_status ()["jit " ]["enabled " ] ?? false ) ) {
6
6
die ('skip Not yet implemented for JIT ' );
7
7
}
8
8
?>
You can’t perform that action at this time.
0 commit comments