Total Complexity | 7 |
Total Lines | 49 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | final class Missing |
||
13 | { |
||
14 | use Makeable; |
||
15 | use Pathable; |
||
16 | |||
17 | protected $locale = LocalesList::ENGLISH; |
||
18 | |||
19 | 1 | public function missing(string $package): array |
|
20 | { |
||
21 | 1 | return array_diff($this->packageable($package), $this->available()); |
|
22 | } |
||
23 | |||
24 | 1 | public function unnecessary(string $package): array |
|
25 | { |
||
26 | 1 | return array_diff($this->available(), $this->packageable($package)); |
|
27 | } |
||
28 | |||
29 | 2 | protected function available(): array |
|
30 | { |
||
31 | 2 | return Locales::available(true); |
|
32 | } |
||
33 | |||
34 | 2 | protected function packageable(string $package): array |
|
44 | } |
||
45 | |||
46 | 2 | protected function defaultLocale(): string |
|
47 | { |
||
48 | 2 | return LocalesList::ENGLISH; |
|
49 | } |
||
50 | |||
51 | 2 | protected function locales(string $package): array |
|
52 | { |
||
53 | 2 | $path = $this->path($package); |
|
54 | |||
55 | 2 | return Directory::names($path); |
|
56 | } |
||
57 | |||
58 | 2 | protected function path(string $package): string |
|
61 | } |
||
62 | } |
||
63 |