DrawMyAttention\ResourceGenerator\ResourceGeneratorServiceProvider::register PHP Method

register() public method

Register the application services.
public register ( ) : void
return void
    public function register()
    {
        $this->app->singleton('command.drawmyattention.makeresource', function ($app) {
            return $app['DrawMyAttention\\ResourceGenerator\\Commands\\ResourceMakeCommand'];
        });
        $this->commands('command.drawmyattention.makeresource');
    }
ResourceGeneratorServiceProvider