From ee9f4d91a8453fc96b90902ab670f23196031c35 Mon Sep 17 00:00:00 2001
From: jrfnl <jrfnl@users.noreply.github.com>
Date: Fri, 12 Jul 2019 06:14:27 +0200
Subject: [PATCH] Remove array_replace_recursive() polyfill

---
 src/wp-includes/compat.php | 53 --------------------------------------
 1 file changed, 53 deletions(-)

diff --git a/src/wp-includes/compat.php b/src/wp-includes/compat.php
index 92eaba7417..1df248f890 100644
--- a/src/wp-includes/compat.php
+++ b/src/wp-includes/compat.php
@@ -323,59 +323,6 @@ if ( ! function_exists( 'sodium_crypto_box' ) ) {
 	require ABSPATH . WPINC . '/sodium_compat/autoload.php';
 }
 
-if ( ! function_exists( 'array_replace_recursive' ) ) :
-	/**
-	 * PHP-agnostic version of {@link array_replace_recursive()}.
-	 *
-	 * The array_replace_recursive() function is a PHP 5.3 function. WordPress
-	 * currently supports down to PHP 5.2, so this method is a workaround
-	 * for PHP 5.2.
-	 *
-	 * Note: array_replace_recursive() supports infinite arguments, but for our use-
-	 * case, we only need to support two arguments.
-	 *
-	 * Subject to removal once WordPress makes PHP 5.3.0 the minimum requirement.
-	 *
-	 * @since 4.5.3
-	 *
-	 * @see https://secure.php.net/manual/en/function.array-replace-recursive.php#109390
-	 *
-	 * @param  array $base         Array with keys needing to be replaced.
-	 * @param  array $replacements Array with the replaced keys.
-	 *
-	 * @return array
-	 */
-	function array_replace_recursive( $base = array(), $replacements = array() ) {
-		foreach ( array_slice( func_get_args(), 1 ) as $replacements ) {
-			$bref_stack = array( &$base );
-			$head_stack = array( $replacements );
-
-			do {
-				end( $bref_stack );
-
-				$bref = &$bref_stack[ key( $bref_stack ) ];
-				$head = array_pop( $head_stack );
-
-				unset( $bref_stack[ key( $bref_stack ) ] );
-
-				foreach ( array_keys( $head ) as $key ) {
-					if ( isset( $key, $bref ) &&
-						isset( $bref[ $key ] ) && is_array( $bref[ $key ] ) &&
-						isset( $head[ $key ] ) && is_array( $head[ $key ] ) ) {
-
-						$bref_stack[] = &$bref[ $key ];
-						$head_stack[] = $head[ $key ];
-					} else {
-						$bref[ $key ] = $head[ $key ];
-					}
-				}
-			} while ( count( $head_stack ) );
-		}
-
-		return $base;
-	}
-endif;
-
 /**
  * Polyfill for the SPL autoloader. In PHP 5.2 (but not 5.3 and later), SPL can
  * be disabled, and PHP 7.2 raises notices if the compiler finds an __autoload()
-- 
2.21.0.windows.1

