The trait Helldar\LaravelLangPublisher\Concerns\Logger requires the property $output which is not provided by Helldar\LaravelLangPublisher\Support\Validator.
Loading history...
14
15
/**
16
* Checking for localization existence.
17
*
18
* @param string $locale
19
*/
20
public function locale(string $locale): void
21
{
22
$this->log('Checking for localization existence: ' . $locale);
23
24
if (! LocalesFacade::isAvailable($locale)) {
25
throw new SourceLocaleDoesntExistsException($locale);
26
}
27
}
28
29
public function package(string $package): void
30
{
31
$this->log('Checking for package existence: ' . $package);
32
33
if (! in_array($package, ConfigFacade::packages(), true)) {