File Editor
Directories:
.. (Back)
Cookie
Exception
Handler
Files:
BodySummarizer.php
BodySummarizerInterface.php
Client.php
ClientInterface.php
ClientTrait.php
HandlerStack.php
MessageFormatter.php
MessageFormatterInterface.php
Middleware.php
Pool.php
PrepareBodyMiddleware.php
RedirectMiddleware.php
RequestOptions.php
RetryMiddleware.php
TransferStats.php
Utils.php
functions.php
functions_include.php
Create New File
Create
Edit File: MessageFormatterInterface.php
<?php namespace GuzzleHttp; use Psr\Http\Message\RequestInterface; use Psr\Http\Message\ResponseInterface; interface MessageFormatterInterface { /** * Returns a formatted message string. * * @param RequestInterface $request Request that was sent * @param ResponseInterface|null $response Response that was received * @param \Throwable|null $error Exception that was received */ public function format(RequestInterface $request, ?ResponseInterface $response = null, ?\Throwable $error = null): string; }
Save Changes
Rename File
Rename