Conditions | 3 |
Paths | 4 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 12 |
Changes | 0 |
1 | <?php |
||
14 | public function handle(TranslationsSheet $translationsSheet) |
||
15 | { |
||
16 | $locked = $translationsSheet->isTranslationsLocked(); |
||
17 | |||
18 | $label = $locked ? 'LOCKED' : 'UNLOCKED'; |
||
19 | $style = $locked ? 'error' : 'info'; |
||
20 | |||
21 | $this->line("Translations area is <$style>$label</$style>"); |
||
22 | } |
||
23 | } |
||
24 |