app->singleton('redis', function ($app) { return new Database($app['config']['database.redis']); }); } /** * Get the services provided by the provider. * * @return array */ public function provides() { return ['redis']; } }