Automattic\WooCommerce\Internal\ShopperLists
ShopperList::find_item
Find an item by key.
Метод класса: ShopperList{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$ShopperList = new ShopperList(); $ShopperList->find_item( $key ): ?ShopperListItem;
- $key(строка) (обязательный)
- Storage key.
Код ShopperList::find_item() ShopperList::find item WC 10.9.1
public function find_item( string $key ): ?ShopperListItem {
return $this->items[ $key ] ?? null;
}