Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
google-listings-and-ads
/
src
/
Utility
:
ArrayUtil.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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 $array A list of strings. * * @return array A list of strings without empty strings. */ public static function remove_empty_values( array $array ): array { return array_values( array_filter( $array ) ); } }