Automattic\WooCommerce\StoreApi\Routes\V1

ProductReviews::get_args()publicWC 1.0

Get method arguments for this REST route.

Метод класса: ProductReviews{}

Хуков нет.

Возвращает

Массив. An array of endpoints.

Использование

$ProductReviews = new ProductReviews();
$ProductReviews->get_args();

Код ProductReviews::get_args() WC 9.8.1

public function get_args() {
	return [
		[
			'methods'             => \WP_REST_Server::READABLE,
			'callback'            => [ $this, 'get_response' ],
			'permission_callback' => '__return_true',
			'args'                => $this->get_collection_params(),
			'allow_batch'         => [ 'v1' => true ],
		],
		'schema' => [ $this->schema, 'get_public_item_schema' ],
	];
}