Polyglot\Services\Lang::__construct PHP Метод

__construct() публичный Метод

Build the language class
public __construct ( Illuminate\Container\Container $app )
$app Illuminate\Container\Container
    public function __construct(Container $app)
    {
        $this->app = $app;
        $this->domain = $app['config']->get('polyglot::domain');
        parent::__construct($app['translation.loader'], $app['config']->get('app.locale'));
    }