Nwidart\Modules\LaravelModulesServiceProvider::setupStubPath PHP Method

setupStubPath() public method

Setup stub path.
public setupStubPath ( )
    public function setupStubPath()
    {
        $this->app->booted(function ($app) {
            Stub::setBasePath(__DIR__ . '/Commands/stubs');
            if ($app['modules']->config('stubs.enabled') === true) {
                Stub::setBasePath($app['modules']->config('stubs.path'));
            }
        });
    }