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

registerListCommand() 공개 메소드

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