- Fix: Notifiable-Trait zum User-Model hinzugefuegt (behebt notify()-500er) - Installer: SMTP-Verbindungstest mit EsmtpTransport + Ueberspringen-Link - Admin: Neuer E-Mail-Tab mit SMTP-Konfiguration + Verbindungstest - Admin: Lazy Quill-Initialisierung (nur sichtbare Locale wird geladen) - Uebersetzungen: 17 neue Mail-Keys in allen 6 Sprachen Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
21 lines
500 B
PHP
Executable File
21 lines
500 B
PHP
Executable File
<?php
|
|
|
|
namespace Psr\Http\Client;
|
|
|
|
use Psr\Http\Message\RequestInterface;
|
|
use Psr\Http\Message\ResponseInterface;
|
|
|
|
interface ClientInterface
|
|
{
|
|
/**
|
|
* Sends a PSR-7 request and returns a PSR-7 response.
|
|
*
|
|
* @param RequestInterface $request
|
|
*
|
|
* @return ResponseInterface
|
|
*
|
|
* @throws \Psr\Http\Client\ClientExceptionInterface If an error happens while processing the request.
|
|
*/
|
|
public function sendRequest(RequestInterface $request): ResponseInterface;
|
|
}
|