| Total Complexity | 3 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Coverage | 87.5% |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | class MultipleIdHeader extends GenericHeader |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * Strips out leading and trailing less than and greater than ('<', '>') |
||
| 20 | * chars to return just the ID portions of the header. |
||
| 21 | * |
||
| 22 | * An empty array may be returned if the header's value is empty. |
||
| 23 | * |
||
| 24 | * For example, a header value of '<[email protected]> |
||
| 25 | * <[email protected]>' would return the |
||
| 26 | * array [ '[email protected]', '[email protected]' ]. |
||
| 27 | * |
||
| 28 | * @return string[] |
||
| 29 | */ |
||
| 30 | 3 | public function getIds() |
|
| 43 |