Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #64950, comment 9


Ignore:
Timestamp:
04/21/2026 02:32:37 AM (7 weeks ago)
Author:
liaison
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #64950, comment 9

    initial v1  
    55The added test case is designed to complete the patch's intent.
    66
     7Under PHP 8.x standards, a strict implementation would typically utilize Union Types, such as:
     8
     9PHP
     10{{{#!php
     11<?php
     12function wp_using_ext_object_cache( bool|null $using = null ): bool|null
     13}}}
     14