Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
subception
/
wp-content
/
plugins
/
woocommerce
/
src
/
Internal
/
ProductFilters
/
Interfaces
:
FilterUrlParam.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php declare( strict_types=1 ); namespace Automattic\WooCommerce\Internal\ProductFilters\Interfaces; /** * Interface for filter URL parameters. * * @internal For exclusive usage of WooCommerce core, backwards compatibility not guaranteed. */ interface FilterUrlParam { /** * Get the param keys. * * @return array */ public function get_param_keys(): array; /** * Get the param. * * @param string $type The type of param to get. * @return array */ public function get_param( string $type ): array; }