mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-20 06:26:57 +00:00
13 lines
233 B
PHP
13 lines
233 B
PHP
<?php
|
|
|
|
namespace GuzzleHttp;
|
|
|
|
use Psr\Http\Message\MessageInterface;
|
|
|
|
interface BodySummarizerInterface
|
|
{
|
|
/**
|
|
* Returns a summarized message body.
|
|
*/
|
|
public function summarize(MessageInterface $message): ?string;
|
|
}
|