Netson\L4gettext\L4gettextServiceProvider::registerInstallCommand PHP 메소드

registerInstallCommand() 공개 메소드

    public function registerInstallCommand()
    {
        // add fetch command to artisan
        $this->app['l4gettext.install'] = $this->app->share(function ($app) {
            return new Commands\InstallCommand(new ProcessBuilder());
        });
        $this->commands('l4gettext.install');
    }