1: | <?php declare(strict_types=1); |
2: | |
3: | namespace Salient\Contract\Http; |
4: | |
5: | |
6: | |
7: | |
8: | interface HttpHeader |
9: | { |
10: | public const ACCEPT = 'Accept'; |
11: | public const ACCEPT_ENCODING = 'Accept-Encoding'; |
12: | public const AUTHORIZATION = 'Authorization'; |
13: | public const CONNECTION = 'Connection'; |
14: | public const CONTENT_DISPOSITION = 'Content-Disposition'; |
15: | public const CONTENT_LENGTH = 'Content-Length'; |
16: | public const CONTENT_TYPE = 'Content-Type'; |
17: | public const DATE = 'Date'; |
18: | public const HOST = 'Host'; |
19: | public const LINK = 'Link'; |
20: | public const LOCATION = 'Location'; |
21: | public const ODATA_VERSION = 'OData-Version'; |
22: | public const PREFER = 'Prefer'; |
23: | public const PROXY_AUTHORIZATION = 'Proxy-Authorization'; |
24: | public const RETRY_AFTER = 'Retry-After'; |
25: | public const SERVER = 'Server'; |
26: | public const TRANSFER_ENCODING = 'Transfer-Encoding'; |
27: | public const USER_AGENT = 'User-Agent'; |
28: | } |
29: | |