| Conditions | 2 |
| Paths | 2 |
| Total Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | public static function toString(Translations $translations, array $options = []) |
||
| 25 | { |
||
| 26 | $options += static::$options; |
||
| 27 | $handle = fopen('php://memory', 'w'); |
||
| 28 | |||
| 29 | foreach (static::toArray($translations, $options['includeHeaders']) as $original => $translation) { |
||
| 30 | static::fputcsv($handle, [$original, $translation], $options); |
||
| 31 | } |
||
| 32 | |||
| 33 | rewind($handle); |
||
| 34 | $csv = stream_get_contents($handle); |
||
| 35 | fclose($handle); |
||
| 36 | |||
| 37 | return $csv; |
||
| 38 | } |
||
| 39 | } |
||
| 40 |