| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 19 | public function getData($sheetName, $offset = 0) |
||
| 20 | { |
||
| 21 | $sheetState = Worksheet::STATE_VISIBLE; |
||
| 22 | $sheetType = Worksheet::TYPE_SHEET; |
||
| 23 | |||
| 24 | $data = pack("VCC", $offset, $sheetState, $sheetType); |
||
| 25 | $data .= StringUtils::toBiff8UnicodeShort($sheetName); |
||
| 26 | |||
| 27 | return $this->getFullRecord($data); |
||
| 28 | } |
||
| 29 | } |
||
| 30 |