PluginProbe ʕ •ᴥ•ʔ
Check & Log Email – Easy Email Testing & Mail logging / 2.0.16
Check & Log Email – Easy Email Testing & Mail logging v2.0.16
2.0.16 2.0.15 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 2.0 2.0.1 2.0.10 2.0.11 2.0.12 2.0.13 2.0.13.1 2.0.13.2 2.0.14 2.0.2 2.0.3 2.0.4 2.0.5 2.0.5.1 2.0.6 2.0.7 2.0.8 2.0.9 trunk 0.5.7 0.6.0 0.6.1 0.6.2 1.0.0 1.0.1 1.0.10 1.0.11 1.0.12 1.0.12.1 1.0.13 1.0.13.1 1.0.2 1.0.3
check-email / vendor / guzzlehttp / guzzle / src / BodySummarizerInterface.php
check-email / vendor / guzzlehttp / guzzle / src Last commit date
Cookie 6 days ago Exception 6 days ago Handler 6 days ago BodySummarizer.php 6 days ago BodySummarizerInterface.php 6 days ago Client.php 6 days ago ClientInterface.php 6 days ago ClientTrait.php 6 days ago HandlerStack.php 6 days ago MessageFormatter.php 6 days ago MessageFormatterInterface.php 6 days ago Middleware.php 6 days ago Pool.php 6 days ago PrepareBodyMiddleware.php 6 days ago RedirectMiddleware.php 6 days ago RequestOptions.php 6 days ago RetryMiddleware.php 6 days ago TransferStats.php 6 days ago Utils.php 6 days ago functions.php 6 days ago functions_include.php 6 days ago
BodySummarizerInterface.php
14 lines
1 <?php
2
3 namespace GuzzleHttp;
4
5 use Psr\Http\Message\MessageInterface;
6
7 interface BodySummarizerInterface
8 {
9 /**
10 * Returns a summarized message body.
11 */
12 public function summarize(MessageInterface $message): ?string;
13 }
14