mantis-matrix-integration – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 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 | } |