| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 40 | 1 | public function exportAllL10nResourceList($filePath = '') |
|
| 41 | { |
||
| 42 | 1 | $l10nResourceList = $this->l10nManager->getAllL10nResourceList(); |
|
| 43 | 1 | $output = $this->l10nConverter->convertL10nResourceList($l10nResourceList); |
|
| 44 | 1 | $f = fopen($filePath, 'w+'); |
|
| 45 | 1 | fwrite($f, $output); |
|
| 46 | 1 | } |
|
| 47 | } |
||
| 48 |