- Created CHANGELOG.md to maintain version history. - Added README.md with usage instructions for the trigger_deprecation() function. - Initialized composer.json for the Symfony Deprecation Contracts library, specifying dependencies and autoloading.
14 lines
263 B
PHP
14 lines
263 B
PHP
<?php
|
|
|
|
namespace PShowSsoScoped\GuzzleHttp;
|
|
|
|
use PShowSsoScoped\Psr\Http\Message\MessageInterface;
|
|
|
|
interface BodySummarizerInterface
|
|
{
|
|
/**
|
|
* Returns a summarized message body.
|
|
*/
|
|
public function summarize(MessageInterface $message): ?string;
|
|
}
|