Make WordPress Core


Ignore:
Timestamp:
08/03/2023 12:08:30 PM (13 months ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Use instanceof keyword instead of the is_a() function.

This is a micro-optimization that removes a few unnecessary function calls.

Follow-up to [31188], [34369], [38986], [41159], [43211], [43230], [44606], [45757].

Props ayeshrajans, jrf, rajinsharwar, costdev, mukesh27, SergeyBiryukov.
Fixes #58943.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/actions.php

    r53942 r56352  
    536536            foreach ( $filter as $identifier => $function ) {
    537537                if ( is_array( $function )
    538                     && is_a( $function['function'][0], 'MockAction' )
     538                    && $function['function'][0] instanceof MockAction
    539539                    && 'action' === $function['function'][1]
    540540                ) {
Note: See TracChangeset for help on using the changeset viewer.