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
/
API
/
Google
/
Query
:
MerchantFreeListingReportQuery.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php declare( strict_types=1 ); namespace Automattic\WooCommerce\GoogleListingsAndAds\API\Google\Query; defined( 'ABSPATH' ) || exit; /** * Class MerchantFreeListingReportQuery * * @package Automattic\WooCommerce\GoogleListingsAndAds\API\Google\Query */ class MerchantFreeListingReportQuery extends MerchantReportQuery { /** * Set the initial columns for this query. */ protected function set_initial_columns() {} /** * Filter the query by a list of ID's. * * @param array $ids list of ID's to filter by. * * @return $this */ public function filter( array $ids ): QueryInterface { // No filtering available for free listings. return $this; } }