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

registerCompileCommand() 공개 메소드

    public function registerCompileCommand()
    {
        // add compile command to artisan
        $this->app['l4gettext.compile'] = $this->app->share(function ($app) {
            return new Commands\CompileCommand();
        });
        $this->commands('l4gettext.compile');
    }