1 | <?php |
||
12 | final class OptimalEncodedHeaderValue |
||
13 | { |
||
14 | /** |
||
15 | * |
||
16 | */ |
||
17 | private const FOLDING = "\r\n "; |
||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | private $value; |
||
22 | |||
23 | /** |
||
24 | * OptimalEncodedHeaderValue constructor. |
||
25 | * @param string $value |
||
26 | */ |
||
27 | 66 | public function __construct(string $value) |
|
31 | |||
32 | /** |
||
33 | * @return string |
||
34 | */ |
||
35 | 66 | public function __toString(): string |
|
50 | |||
51 | } |