Conditions | 3 |
Paths | 3 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
22 | 2 | public function make() |
|
23 | { |
||
24 | 2 | foreach ($this->something as $something) { |
|
25 | 2 | $texts = $something[0]->load(); |
|
26 | 2 | $newTexts = $something[2]->translate(array_values($texts)); |
|
27 | |||
28 | 2 | $translations = []; |
|
29 | 2 | foreach ($texts as $key => $text) { |
|
30 | 2 | $translations[$key] = $newTexts[$text] ?? ''; |
|
31 | } |
||
32 | 2 | $something[1]->save($translations); |
|
33 | } |
||
36 |