File manager - Edit - /home/xfekoga/rooftopcleaners/wp-content/plugins/wordpress-seo/src/ai/http-request/infrastructure/api-client-interface.php
Back
<?php // phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure. namespace Yoast\WP\SEO\AI\HTTP_Request\Infrastructure; use Exception; use Yoast\WP\SEO\AI\HTTP_Request\Domain\Exceptions\WP_Request_Exception; /** * Interface for the API client. */ interface API_Client_Interface { /** * Performs a request to the API. * * @param string $action_path The action path for the request. * @param array<string> $body The body of the request. * @param array<string> $headers The headers for the request. * @param bool $is_post Whether the request is a POST request. * * @return array<int|string|array<string>> The response from the API. * * @throws WP_Request_Exception When the wp_remote_post() returns an error. */ public function perform_request( string $action_path, $body, $headers, bool $is_post ): array; /** * Gets the timeout of the requests in seconds. * * @return int The timeout of the suggestion requests in seconds. */ public function get_request_timeout(): int; }
| ver. 1.4 |
Github
|
.
| PHP 8.0.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings