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