Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
antiradionic
/
beta
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
ai-http-request
/
application
:
response-parser-interface.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Yoast\WP\SEO\AI_HTTP_Request\Application; use Yoast\WP\SEO\AI_HTTP_Request\Domain\Response; interface Response_Parser_Interface { /** * Parses the response from the API. * * @param array<int|string|array<string>> $response The response from the API. * * @return Response The parsed response. */ public function parse( $response ): Response; }