Don't inject the CacheManager

This commit is contained in:
James Brooks
2015-11-30 21:53:03 +00:00
parent 0eee495a38
commit 65566a51df
2 changed files with 6 additions and 6 deletions

View File

@@ -34,7 +34,7 @@ class GitHubServiceProvider extends ServiceProvider
protected function registerRelease()
{
$this->app->singleton('cachet.release', function ($app) {
$cache = $app['cache'];
$cache = $app['cache.store'];
$config = $app['config'];
return new Release($cache, $config);