| 1 | <?php |
||
| 13 | class MultispacedHeadersParser implements HeaderColumnParser |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var array |
||
| 17 | */ |
||
| 18 | private $lines; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @var string |
||
| 22 | */ |
||
| 23 | private $headerLine; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @param string $contents The contents holding the data. |
||
| 27 | */ |
||
| 28 | public function __construct(string $contents) |
||
| 34 | |||
| 35 | public function getRows() : array |
||
| 47 | |||
| 48 | public function getHeaders() : array |
||
| 52 | } |
||
| 53 |