Conditions | 2 |
Paths | 2 |
Total Lines | 14 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
18 | 4 | protected function ran(): void |
|
19 | { |
||
20 | 4 | $this->log('Starting processing of the locales list...'); |
|
21 | |||
22 | 4 | foreach ($this->locales() as $locale) { |
|
23 | 4 | $this->log('Localization handling: ' . $locale); |
|
24 | |||
25 | 4 | $this->validateLocale($locale); |
|
26 | |||
27 | 4 | $this->processing($locale, $locale); |
|
28 | |||
29 | 4 | $status = $this->process(null, $locale, null); |
|
30 | |||
31 | 4 | $this->processed($locale, $locale, $status); |
|
32 | } |
||
40 |