| Conditions | 2 |
| Paths | 2 |
| Total Lines | 13 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 53 | public function writeCatalogues(Configuration $config, array $catalogues) |
||
| 54 | { |
||
| 55 | foreach ($catalogues as $catalogue) { |
||
| 56 | $this->writer->writeTranslations( |
||
| 57 | $catalogue, |
||
| 58 | $config->getOutputFormat(), |
||
| 59 | [ |
||
| 60 | 'path' => $config->getOutputDir(), |
||
| 61 | 'default_locale' => $this->defaultLocale, |
||
| 62 | ] |
||
| 63 | ); |
||
| 64 | } |
||
| 65 | } |
||
| 66 | } |
||
| 67 |