🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-19 11:11:45 | PHP 8.1.34
📂
/ (Root)
/
home
/
therahul
/
thedasstores.com
/
wp-content
/
plugins
/
google-listings-and-ads
/
src
/
Utility
📍 /home/therahul/thedasstores.com/wp-content/plugins/google-listings-and-ads/src/Utility
🔄 Refresh
✏️
Editing: ArrayUtil.php
Writable
<?php namespace Automattic\WooCommerce\GoogleListingsAndAds\Utility; /** * A class of utilities for dealing with arrays. * * @since 2.4.0 */ class ArrayUtil { /** * Remove empty values from array. * * @param array $strings A list of strings. * * @return array A list of strings without empty strings. */ public static function remove_empty_values( array $strings ): array { return array_values( array_filter( $strings ) ); } }
💾 Save Changes
❌ Cancel