for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Helldar\LaravelLangPublisher\Facades;
use Helldar\LaravelLangPublisher\Support\Config as ConfigSupport;
use Illuminate\Support\Facades\Facade;
/**
* @method static string getVendorPath()
* @method static string getLocale()
* @method static string getFallbackLocale()
* @method static bool isAlignment()
* @method static array getExclude(string $key, array $default = [], bool $is_json = false)
* @method static array getIgnore()
* @method static int getCase()
* @method static bool isInline()
*/
final class Config extends Facade
{
protected static function getFacadeAccessor()
return ConfigSupport::class;
}