Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
1 | <?php |
2 | |
3 | namespace Wikimedia\Http; |
4 | |
5 | /** |
6 | * Provide Request Telemetry information |
7 | * @unstable |
8 | * @since 1.41 |
9 | */ |
10 | interface TelemetryHeadersInterface { |
11 | |
12 | /** |
13 | * Get Headers to outgoing requests |
14 | * @return array<string, string> Headers array |
15 | */ |
16 | public function getRequestHeaders(): array; |
17 | } |