Sleimanx2\Plastic\MappingServiceProvider::registerRepository PHP Method

registerRepository() protected method

Register the mapping repository service.
protected registerRepository ( )
    protected function registerRepository()
    {
        $this->app->singleton('mapping.repository', function ($app) {
            $table = $app['config']['plastic.mappings'];
            return new Mappings($app['db'], $table);
        });
    }