Netson\L4gettext\L4gettextServiceProvider::registerListCommand PHP Method

registerListCommand() public method

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');
    }