Total Complexity | 1 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
14 | class IdHeader extends GenericHeader |
||
15 | { |
||
16 | /** |
||
17 | * Strips out leading and trailing less than and greater than ('<', '>') |
||
18 | * chars to return just the ID portion of the header. If '<>' chars aren't |
||
19 | * found, the value is returned as-is. |
||
20 | * |
||
21 | * For example, a header value of <[email protected]> would return the |
||
22 | * string '[email protected]'. |
||
23 | * |
||
24 | * @return string |
||
25 | */ |
||
26 | 3 | public function getId() |
|
31 |