1: <?php declare(strict_types=1);
2:
3: namespace Salient\Contract\Http;
4:
5: /**
6: * @api
7: */
8: interface HasHttpHeaders
9: {
10: public const HEADERS_SENSITIVE = [
11: HasHttpHeader::HEADER_AUTHORIZATION,
12: HasHttpHeader::HEADER_PROXY_AUTHORIZATION,
13: ];
14:
15: public const HEADERS_UNSTABLE = [
16: HasHttpHeader::HEADER_USER_AGENT,
17: ];
18: }
19: