| Total Complexity | 3 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | abstract class BaseCommand extends Command |
||
| 10 | { |
||
| 11 | /** @var \Helldar\LaravelLangPublisher\Contracts\Localization */ |
||
| 12 | protected $localization; |
||
| 13 | |||
| 14 | /** @var \Helldar\LaravelLangPublisher\Contracts\Result */ |
||
| 15 | protected $result; |
||
| 16 | |||
| 17 | public function __construct(Localization $localization, Result $result) |
||
| 24 | } |
||
| 25 | |||
| 26 | protected function locales(): array |
||
| 27 | { |
||
| 28 | return (array) $this->argument('locales'); |
||
| 29 | } |
||
| 30 | |||
| 31 | protected function force(): bool |
||
| 34 | } |
||
| 35 | } |
||
| 36 |