| 1 | <?php |
||
| 13 | class Workbook |
||
| 14 | {
|
||
| 15 | /** @var string */ |
||
| 16 | private $xml = "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"; |
||
| 17 | /** @var string */ |
||
| 18 | private $urlSchemaFormat = 'http://schemas.openxmlformats.org/officeDocument/2006'; |
||
| 19 | /** @var string */ |
||
| 20 | private $urlOpenXmlFormat = 'http://schemas.openxmlformats.org/spreadsheetml/2006/main'; |
||
| 21 | /** @var array */ |
||
| 22 | private $sheets = []; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @return string |
||
| 26 | */ |
||
| 27 | public function buildWorkbookXML() |
||
| 50 | |||
| 51 | /** |
||
| 52 | * @param array $sheets |
||
| 53 | * |
||
| 54 | * @return $this |
||
| 55 | */ |
||
| 56 | public function setSheet(array $sheets) |
||
| 62 | } |
||
| 63 |