diff --git a/src/wp-includes/compat.php b/src/wp-includes/compat.php
index 60e8c0772b1..57b6954a352 100644
a
|
b
|
function _hash_hmac( $algo, $data, $key, $binary = false ) { |
309 | 309 | * I.e. when PHP 7.4.0 becomes the minimum requirement, this polyfill |
310 | 310 | * can be safely removed. |
311 | 311 | * |
| 312 | * @ignore |
312 | 313 | * @since 3.9.2 |
313 | 314 | * |
314 | 315 | * @param string $known_string Expected string. |
… |
… |
function hash_equals( $known_string, $user_string ) { |
349 | 350 | * Verify that the content of a variable is an array or an object |
350 | 351 | * implementing the Countable interface. |
351 | 352 | * |
| 353 | * @ignore |
352 | 354 | * @since 4.9.6 |
353 | 355 | * |
354 | 356 | * @param mixed $value The value to check. |
… |
… |
function is_countable( $value ) { |
370 | 372 | * Verify that the content of a variable is an array or an object |
371 | 373 | * implementing the Traversable interface. |
372 | 374 | * |
| 375 | * @ignore |
373 | 376 | * @since 4.9.6 |
374 | 377 | * |
375 | 378 | * @param mixed $value The value to check. |
… |
… |
function is_iterable( $value ) { |
387 | 390 | * Get the first key of the given array without affecting |
388 | 391 | * the internal array pointer. |
389 | 392 | * |
| 393 | * @ignore |
390 | 394 | * @since 5.9.0 |
391 | 395 | * |
392 | 396 | * @param array $array An array. |
… |
… |
function array_key_first( array $array ) { |
407 | 411 | * Get the last key of the given array without affecting the |
408 | 412 | * internal array pointer. |
409 | 413 | * |
| 414 | * @ignore |
410 | 415 | * @since 5.9.0 |
411 | 416 | * |
412 | 417 | * @param array $array An array. |
… |
… |
function array_key_last( array $array ) { |
431 | 436 | * Performs a case-sensitive check indicating if needle is |
432 | 437 | * contained in haystack. |
433 | 438 | * |
| 439 | * @ignore |
434 | 440 | * @since 5.9.0 |
435 | 441 | * |
436 | 442 | * @param string $haystack The string to search in. |
… |
… |
function str_contains( $haystack, $needle ) { |
449 | 455 | * Performs a case-sensitive check indicating if |
450 | 456 | * the haystack begins with needle. |
451 | 457 | * |
| 458 | * @ignore |
452 | 459 | * @since 5.9.0 |
453 | 460 | * |
454 | 461 | * @param string $haystack The string to search in. |
… |
… |
function str_starts_with( $haystack, $needle ) { |
471 | 478 | * Performs a case-sensitive check indicating if |
472 | 479 | * the haystack ends with needle. |
473 | 480 | * |
| 481 | * @ignore |
474 | 482 | * @since 5.9.0 |
475 | 483 | * |
476 | 484 | * @param string $haystack The string to search in. |