Laralib\L5scaffold\GeneratorsServiceProvider::registerScaffoldGenerator PHP Method

registerScaffoldGenerator() private method

Register the make:scaffold generator.
private registerScaffoldGenerator ( ) : void
return void
    private function registerScaffoldGenerator()
    {
        $this->app->singleton('command.larascaf.scaffold', function ($app) {
            return $app['Laralib\\L5scaffold\\Commands\\ScaffoldMakeCommand'];
        });
        $this->commands('command.larascaf.scaffold');
    }