| Total Complexity | 3 |
| Total Lines | 32 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 32 | class CookieHeader extends Header |
||
| 33 | { |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @var array |
||
| 37 | */ |
||
| 38 | private array $value; |
||
| 39 | |||
| 40 | /** |
||
| 41 | * Constructor of the class |
||
| 42 | * |
||
| 43 | * @param array $value |
||
| 44 | */ |
||
| 45 | 5 | public function __construct(array $value = []) |
|
| 48 | } |
||
| 49 | |||
| 50 | /** |
||
| 51 | * {@inheritdoc} |
||
| 52 | */ |
||
| 53 | 3 | public function getFieldName(): string |
|
| 56 | } |
||
| 57 | |||
| 58 | /** |
||
| 59 | * {@inheritdoc} |
||
| 60 | */ |
||
| 61 | 3 | public function getFieldValue(): string |
|
| 66 |