# wp-parsely/3.6.1/src/RemoteAPI/interface-proxy.php

Parse.ly, version 3.6.1. 27 lines.

- Page: https://pluginprobe.com/plugins/wp-parsely/3.6.1/code/src/RemoteAPI/interface-proxy.php
- Raw: https://pluginprobe.com/plugins/wp-parsely/3.6.1/raw/src/RemoteAPI/interface-proxy.php
- Modified: 2022-05-02T10:45:56+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wp-parsely/3.6.1/code/src/RemoteAPI/interface-proxy.php#L10-L20`.

```php
<?php
/**
 * Remote API: Proxy interface
 *
 * @package Parsely
 * @since   3.2.0
 */

declare(strict_types=1);

namespace Parsely\RemoteAPI;

use WP_Error;

/**
 * Remote API Proxy Interface.
 */
interface Proxy {
	/**
	 * Returns the items provided by this interface.
	 *
	 * @param array<string, mixed> $query The query arguments to send to the remote API.
	 * @return WP_Error|array<string, mixed>
	 */
	public function get_items( array $query );
}

```
