1 | <?php |
||
19 | final class UnencodedPayloadChecker implements HeaderCheckerInterface |
||
20 | { |
||
21 | private const HEADER_NAME = 'b64'; |
||
22 | |||
23 | /** |
||
24 | * {@inheritdoc} |
||
25 | */ |
||
26 | public function checkHeader($value) |
||
30 | |||
31 | /** |
||
32 | * {@inheritdoc} |
||
33 | */ |
||
34 | public function supportedHeader(): string |
||
38 | |||
39 | /** |
||
40 | * {@inheritdoc} |
||
41 | */ |
||
42 | public function protectedHeaderOnly(): bool |
||
46 | } |
||
47 |