| Total Complexity | 3 | 
| Total Lines | 32 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 5 | class Header | ||
| 6 | { | ||
| 7 | /** @var string */ | ||
| 8 | protected $id; | ||
| 9 | |||
| 10 | /** @var string */ | ||
| 11 | protected $value; | ||
| 12 | |||
| 13 | /** | ||
| 14 | * @param string $id | ||
| 15 | * @param string $value | ||
| 16 | */ | ||
| 17 | public function __construct($id, $value) | ||
| 21 | } | ||
| 22 | |||
| 23 | /** | ||
| 24 | * @return string | ||
| 25 | */ | ||
| 26 | public function getId() | ||
| 29 | } | ||
| 30 | |||
| 31 | /** | ||
| 32 | * @return string | ||
| 33 | */ | ||
| 34 | public function getValue() | ||
| 39 |