Advanced Web Server Manager
Complete File Manager & Terminal - Standalone Version
By Sid Gifari | Gifari Industries
Current path:
/
/
home
/
qtdcvxyp
/
public_html
/
wp-includes
/
php-ai-client
/
src
/
Providers
/
Http
/
Contracts
✏️
Editing: RequestAuthenticationInterface.php
<?php declare (strict_types=1); namespace WordPress\AiClient\Providers\Http\Contracts; use WordPress\AiClient\Common\Contracts\WithJsonSchemaInterface; use WordPress\AiClient\Providers\Http\DTO\Request; /** * Interface for HTTP request authentication. * * @since 0.1.0 */ interface RequestAuthenticationInterface extends WithJsonSchemaInterface { /** * Authenticates an HTTP request. * * @since 0.1.0 * * @param Request $request The request to authenticate. * @return Request The authenticated request. */ public function authenticateRequest(Request $request): Request; }
💾 Save Changes
❌ Cancel