oont-contents/plugins/webappick-product-feed-for-woocommerce/V5/Query/Query.php
2025-03-31 21:42:48 +02:00

18 lines
259 B
PHP

<?php
namespace CTXFeed\V5\Query;
class Query {
/**
* @var QueryInterface
*/
private $query;
public function __construct( QueryInterface $query ) {
$this->query = $query;
}
public function get_ids() {
return $this->query->product_ids();
}
}