| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 52 | public static function getSpreadsheetLoader() |
||
| 53 | { |
||
| 54 | if (!isset(self::$spreadsheetLoader)) { |
||
| 55 | self::$spreadsheetLoader = new SpreadsheetLoader( |
||
| 56 | static::createRowIteratorFactory(), |
||
| 57 | static::WORKBOOK_CLASS, |
||
| 58 | static::SHEET_NAME |
||
| 59 | ); |
||
| 60 | } |
||
| 61 | |||
| 62 | return self::$spreadsheetLoader; |
||
| 63 | } |
||
| 64 | |||
| 73 |