Changes between Initial Version and Version 1 of Ticket #64950, comment 9
- Timestamp:
- 04/21/2026 02:32:37 AM (7 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #64950, comment 9
initial v1 5 5 The added test case is designed to complete the patch's intent. 6 6 7 Under PHP 8.x standards, a strict implementation would typically utilize Union Types, such as: 8 9 PHP 10 {{{#!php 11 <?php 12 function wp_using_ext_object_cache( bool|null $using = null ): bool|null 13 }}} 14