Revert get_meta_data changes and return array of WC_Meta_Data objects

This commit is contained in:
Mike Jolley 2017-10-04 14:12:43 +01:00
parent 47d50a70ea
commit 240a321dd0
1 changed files with 3 additions and 4 deletions

View File

@ -252,19 +252,18 @@ abstract class WC_Data {
* @return bool * @return bool
*/ */
protected function filter_null_meta( $meta ) { protected function filter_null_meta( $meta ) {
$meta = (array) $meta; return ! is_null( $meta->value );
return ! is_null( $meta['value'] );
} }
/** /**
* Get All Meta Data. * Get All Meta Data.
* *
* @since 2.6.0 * @since 2.6.0
* @return array * @return array of objects.
*/ */
public function get_meta_data() { public function get_meta_data() {
$this->maybe_read_meta_data(); $this->maybe_read_meta_data();
return array_filter( wc_list_pluck( $this->meta_data, 'get_data' ), array( $this, 'filter_null_meta' ) ); return array_filter( $this->meta_data, array( $this, 'filter_null_meta' ) );
} }
/** /**