Fenos\Notifynder\NotifynderServiceProvider::builder PHP Method

builder() protected method

Bind Builder.
protected builder ( )
    protected function builder()
    {
        $this->app->singleton('notifynder.builder', function ($app) {
            return new NotifynderBuilder($app['notifynder.category']);
        });
        $this->app->resolving(NotifynderBuilder::class, function (NotifynderBuilder $object, $app) {
            $object->setConfig($app['config']);
        });
    }