Automattic\WooCommerce\Internal\ShopperLists

ShopperList::get_itemspublicWC 1.0

Get all items currently in the list.

Method of the class: ShopperList{}

No Hooks.

Returns

Array. ShopperListItem>

Usage

$ShopperList = new ShopperList();
$ShopperList->get_items(): array;

ShopperList::get_items() code WC 10.9.1

public function get_items(): array {
	return $this->items;
}