Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 9 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
17 | 1 | public function handle(Pusher $pusher, Spreadsheet $spreadsheet, Writer $writer) |
|
18 | { |
||
19 | 1 | $this->output->writeln('<comment>Scanning local languages files</comment>'); |
|
20 | 1 | $translations = Util::keyValues( |
|
21 | 1 | $pusher->getScannedAndTransformedTranslations(), |
|
22 | 1 | $spreadsheet->getCamelizedHeader() |
|
23 | ); |
||
24 | |||
25 | 1 | $this->output->writeln('<comment>Rewriting :</comment>'); |
|
26 | 1 | $writer->withOutput($this->output)->setTranslations($translations)->write(); |
|
27 | |||
28 | 1 | $this->output->writeln('<info>Done.</info>'); |
|
29 | 1 | } |
|
30 | } |
||
31 |