1 | <?php |
||
8 | class XHeaderLine extends AbstractHeaderLine |
||
9 | { |
||
10 | /** @var string */ |
||
11 | private $prefix; |
||
12 | |||
13 | /** @var string */ |
||
14 | private $suffix; |
||
15 | |||
16 | /** |
||
17 | * XHeaderLine constructor. |
||
18 | * |
||
19 | * @param string $identifier - e.g. X-My-Headerline |
||
20 | * @param string $value - e.g. bazzline |
||
21 | */ |
||
22 | public function __construct($identifier, $value) |
||
27 | |||
28 | protected function prefix() |
||
32 | |||
33 | protected function suffix() |
||
37 | } |
||
38 |