| Conditions | 3 |
| Paths | 2 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 37 | public function getWorkbookXml() |
||
| 38 | { |
||
| 39 | $definedNames = ''; |
||
| 40 | if ($this->printTitleStart && $this->printTitleEnd) { |
||
| 41 | $definedNames = sprintf( |
||
| 42 | WorkbookXml::DEFINED_NAMES_XML, |
||
| 43 | $this->printTitleStart, |
||
| 44 | $this->printTitleEnd |
||
| 45 | ); |
||
| 46 | } |
||
| 47 | |||
| 48 | return sprintf(WorkbookXml::WORKBOOK_XML, $definedNames); |
||
| 49 | } |
||
| 50 | } |